当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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:



Python3

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

输出:

('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)

输出:




相关用法


注:本文由纯净天空筛选整理自deepanshu_rustagi大神的英文原创作品 turtle.colormode() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。