📜  Python中的 turtle.Screen().bgcolor()函数

📅  最后修改于: 2022-05-13 01:54:55.500000             🧑  作者: Mango

Python中的 turtle.Screen().bgcolor()函数

turtle 模块以面向对象和面向过程的方式提供海龟图形原语。因为它使用 Tkinter 作为底层图形,所以它需要安装一个支持 Tk 的Python版本。

turtle.Screen().bgcolor()

该方法用于设置或返回海龟屏幕的背景颜色。

句法:

turtle.bgcolor(*args)

参数:

Format                             Argument                    Description                              
bgcolor(“color”)colorstring of color name
bgcolor(r, g, b)r, g, brgb color code values

以下是上述方法的实现以及一些示例:

示例 1:

Python3
# importing package
import turtle
  
# set the background color
# of the turtle screen
turtle.Screen().bgcolor("orange")
  
# move turtle
turtle.forward(100)


Python3
# importing package
import turtle
  
# set the background color
# of the turtle screen
turtle.Screen().bgcolor(0,0,255)
  
# move turtle
turtle.forward(100)


输出 :

示例 2:

Python3

# importing package
import turtle
  
# set the background color
# of the turtle screen
turtle.Screen().bgcolor(0,0,255)
  
# move turtle
turtle.forward(100)

输出 :