有没有办法可以设置 python 海龟的背景颜色?
我正在尝试设置我的海龟图形的背景颜色,有没有办法可以设置 python 海龟的背景颜色?
I am trying to set the background color of my turtle graphic, is there a way can set the background color for python turtle?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用turtle.bgcolor(*args)。
例如:
或
阅读文档
http://docs.python.org/library/turtle.html#turtle.bgcolor
Use
turtle.bgcolor(*args)
.For instance:
or
Read the documentation at
http://docs.python.org/library/turtle.html#turtle.bgcolor
听起来你是为乌龟设置颜色,而不是为屏幕设置颜色。即使您没有设置屏幕,也会出现一个屏幕,但它尚未定义,因此您无法自定义它。如果您设置了代码的开头,那么您可以自定义屏幕,例如:
It sounds like you set the color for your turtle, not your screen. A screen will appear even if you don't set up your screen, but then it's not defined so you can't customize it. If you set up the beginning of your code, then you can customize your screen, for example: