Python中的turtle.Screen().bgcolor()函数
turtle模块以面向对象和面向过程的方式提供Turtle图形基元。因为它使用 Tkinter 作为底层图形,它需要安装一个支持 Tk 的 Python 版本。
turtle.Screen().bgcolor()
该方法用于设置或返回Turtle Screen的背景颜色。
语法:
turtle.bgcolor(*args)
参数:
格式 | 参数 | 描述 |
---|---|---|
bgcolor(“color”) | color | string of color name |
bgcolor(r, g, b) | r, g, b | rgb颜色代码值 |
下面是上述方法的实现和一些例子。
例子1 :
# importing package
import turtle
# set the background color
# of the turtle screen
turtle.Screen().bgcolor("orange")
# move turtle
turtle.forward(100)
输出 :
例子2 :
# importing package
import turtle
# set the background color
# of the turtle screen
turtle.Screen().bgcolor(0,0,255)
# move turtle
turtle.forward(100)
输出 :