手机也能上课
1/2
颜色命令
命令
|
说明
|
turtle.fillcolor(colorstring)
|
绘制图形的填充颜色
|
turtle.color(color1, color2)
|
同时设置pencolor=color1, fillcolor=color2
|
turtle.filling()
|
返回当前是否在填充状态
|
turtle.begin_fill()
|
准备开始填充图形
|
turtle.end_fill()
|
填充完成
|
turtle.hideturtle()
|
隐藏画笔的turtle形状
|
turtle.showturtle()
|
显示画笔的turtle形状
|
turtle.pencolor():没有参数传入,返回当前画笔颜色,传入参数设置画笔颜色,可以是字符串如"green", "red",也可以是RGB色值。