Python – turtle.pencolor()方法
turtle 模块以面向对象和面向过程的方式提供了Turtle图形原语。因为它使用 tkinter 作为底层图形,它需要安装一个支持 Tk 的 Python 版本。
turtle.pencolor() :
该方法用于改变Turtle图画的墨水颜色。默认的颜色是黑色。
语法: turtle.pencolor(*args)
参数:该方法有以下参数。
- colorstring: (可选) colorstring 一串颜色名称,如 “红色”、”绿色 “等。
- (r, g, b): (可选)使用rgb颜色代码的r、g和b三个值的一个元组。
- r、g、b:(可选)使用rgb颜色代码的三个值r、g和b。
返回: None
下面是上述方法的实现和一个例子。
# importing turtle package
import turtle
# set turtle shape
turtle.shape("turtle")
# set the colormode
turtle.colormode(255)
# use forward by 100 pixel
# default pen color is black
turtle.forward(100)
# change the pencolor
# pencolor is red
turtle.pencolor("red")
# use forward by 100 pixel
# then 90 degrees right
turtle.right(90)
turtle.forward(100)
# change the pencolor
# pencolor is blue
turtle.pencolor((41,41,253))
# use forward by 100 pixel
# then 90 degrees right
turtle.right(90)
turtle.forward(100)
# change the pencolor
# pencolor is green
turtle.pencolor(41,253,41)
# use forward by 100 pixel
# then 90 degrees right
turtle.right(90)
turtle.forward(100)
# This code is contributed
# by Deepanshu Rustagi.
输出 :