用法:
turtle.colormode(cmode=None)
cmode- 值 1.0 或 255 之一
参数:
返回颜色模式或将其设置为 1.0 或 255。随后,颜色三元组的
r
,g
,b
值必须在 0..cmode
范围内。>>> screen.colormode(1) >>> turtle.pencolor(240, 160, 80) Traceback (most recent call last): ... TurtleGraphicsError: bad color sequence: (240, 160, 80) >>> screen.colormode() 1.0 >>> screen.colormode(255) >>> screen.colormode() 255 >>> turtle.pencolor(240,160,80)
相关用法
- Python turtle.colormode()用法及代码示例
- Python turtle.color用法及代码示例
- Python turtle.color()用法及代码示例
- Python turtle.circle()用法及代码示例
- Python turtle.clearstamps用法及代码示例
- Python turtle.clearstamp用法及代码示例
- Python turtle.clear()用法及代码示例
- Python turtle.clearstamp()用法及代码示例
- Python turtle.circle用法及代码示例
- Python turtle.clone()用法及代码示例
- Python turtle.clearstamps()用法及代码示例
- Python turtle.write_docstringdict()用法及代码示例
- Python turtle.reset用法及代码示例
- Python turtle.delay()用法及代码示例
- Python turtle.write()用法及代码示例
- Python turtle.getpen()用法及代码示例
- Python turtle.isvisible用法及代码示例
- Python turtle.onkey用法及代码示例
- Python turtle.tracer用法及代码示例
- Python turtle.end_fill()用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 turtle.colormode。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。