有没有办法可以设置 python 海龟的背景颜色?

发布于 2024-11-03 22:00:29 字数 51 浏览 1 评论 0原文

我正在尝试设置我的海龟图形的背景颜色,有没有办法可以设置 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

等数载,海棠开 2024-11-10 22:00:29

使用turtle.bgcolor(*args)。

例如:

import turtle  
turtle.bgcolor("black")

from turtle import *
bgcolor("black")

阅读文档
http://docs.python.org/library/turtle.html#turtle.bgcolor

Use turtle.bgcolor(*args).

For instance:

import turtle  
turtle.bgcolor("black")

or

from turtle import *
bgcolor("black")

Read the documentation at
http://docs.python.org/library/turtle.html#turtle.bgcolor

成熟稳重的好男人 2024-11-10 22:00:29

听起来你是为乌龟设置颜色,而不是为屏幕设置颜色。即使您没有设置屏幕,也会出现一个屏幕,但它尚未定义,因此您无法自定义它。如果您设置了代码的开头,那么您可以自定义屏幕,例如:

import turtle
wn=turtle.Screen()
wn.bgcolor("black")
wn.title("This is my screen title!")

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:

import turtle
wn=turtle.Screen()
wn.bgcolor("black")
wn.title("This is my screen title!")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文