Python中的turtle.colormode()函数

Python中的turtle.colormode()函数

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

turtle.colormode()

该函数用于返回颜色模式或将其设置为1.0或255。(色彩三要素的(r、g、b)值必须在0到c模式之间。它只需要一个参数 “cmode”,即1.0或255的数值之一。

语法 :

turtle.colormode(mode=None)

下面是上述方法的实现和一些例子。

例子1 :

# import package
import turtle
  
# check the default value
print(turtle.color())

输出 :

('black', 'black')

例子2 :

# 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)

输出 :

Python中的turtle.colormode()函数

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程