Python中的 turtle.colormode()函数
turtle 模块以面向对象和面向过程的方式提供海龟图形原语。因为它使用 Tkinter 作为底层图形,所以它需要安装一个支持 Tk 的Python版本。
乌龟.colormode()
此函数用于返回颜色模式或将其设置为 1.0 或 255。颜色三元组的 (r, g, b) 值必须在 0 到 c 模式范围内。它只需要一个参数作为“cmode”值 1.0 或 255 之一。
句法 :
turtle.colormode(mode=None)
以下是上述方法的实现以及一些示例:
示例 1:
Python3
# import package
import turtle
# check the default value
print(turtle.color())
Python3
# import package
import turtle
# set the colormode to 255
turtle.colormode(255)
# set color
turtle.color(0,0,255)
# motion
for i in range(20):
turtle.forward(2+2*i)
turtle.right(90)
# set the colormode to 1.0
turtle.colormode(1.0)
# set color
turtle.color(1.0,0,0)
# motion
for i in range(20):
turtle.forward(40+4*i)
turtle.right(90)
输出 :
('black', 'black')
示例 2:
Python3
# import package
import turtle
# set the colormode to 255
turtle.colormode(255)
# set color
turtle.color(0,0,255)
# motion
for i in range(20):
turtle.forward(2+2*i)
turtle.right(90)
# set the colormode to 1.0
turtle.colormode(1.0)
# set color
turtle.color(1.0,0,0)
# motion
for i in range(20):
turtle.forward(40+4*i)
turtle.right(90)
输出 :