turtle 模块以面向对象和面向过程的方式提供 turtle 图形基元。由于它使用Tkinter作为基础图形,因此需要安装有Tk支持的Python版本。
turtle .color()
此方法用于更改 turtle 的颜色。默认颜色是黑色。
用法:
turtle.color(*args)
参数:
格式 | 参数 | 描述 |
---|---|---|
turtle.color(colorstring) | 色带 | 一串颜色名称,例如“red”,“green”等。 |
turtle.color((r,g,b)) | (r,g,b) | 使用rgb颜色代码的三个值r,g和b的元组 |
turtle.color(r,g,b) | r,g,b | 使用rgb颜色代码的三个值r,g和b |
下面是上述方法的实现和一些示例:
范例1:
Python3
# importing package
import turtle
# use forward by 50 (deault = black)
turtle.forward(50)
# change the color of turtle
turtle.color("red")
# use forward by 50 (color = red)
turtle.forward(50)
输出:
范例2:
Python3
# importing package
import turtle
# use forward by 100 (deault = black)
turtle.forward(100)
# change the color of turtle
turtle.color("red")
# use forward by 100 in 90 degrees
# right (color = red)
turtle.right(90)
turtle.forward(100)
# change the color of turtle
turtle.color((41,41,253))
# use forward by 100 in 90 degrees
# right (color = blue)
turtle.right(90)
turtle.forward(100)
# change the color of turtle
turtle.color(41,253,41)
# use forward by 100 in 90 degrees
# right (color = green)
turtle.right(90)
turtle.forward(100)
输出:
相关用法
- Python next()用法及代码示例
- Python set()用法及代码示例
- Python os.dup()用法及代码示例
- Python Decimal exp()用法及代码示例
- Python shutil.which()用法及代码示例
- Python os.minor()用法及代码示例
- Python os.sched_rr_get_interval()用法及代码示例
- Python os.sched_get_priority_min()用法及代码示例
- Python os.sched_setaffinity()用法及代码示例
- Python os.sched_get_priority_max()用法及代码示例
- Python os.sched_getaffinity()用法及代码示例
- Python os.major()用法及代码示例
- Python os.ftruncate()用法及代码示例
- Python os.truncate()用法及代码示例
- Python os.fsdecode()用法及代码示例
- Python os.wait()用法及代码示例
- Python sympy.div()用法及代码示例
- Python os.setgroups()用法及代码示例
注:本文由纯净天空筛选整理自deepanshu_rustagi大神的英文原创作品 turtle.color() method in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。