turtle.setup ( width , height , startx , starty )
通过setup()函数可以设置窗体大小以及位置,前两个参数表示该窗体的宽和高,后两个参数表示窗体在整个页面的位置。
turtle.goto ( x , y )
可以画出从当前点坐标到( x , y )的一条直线
RGB指红蓝绿三个通道的颜色组合,如白色、黄色、红色、黑色等
turtle.colormode( mode )
可以进行颜色的改变
import turtle as t#引用turtle库
t.penup()#画笔抬起
t.bk(160)#向后退160,也可以写成t.fd(-160)
t.pendown()#画笔落下
t.left(90)#向左转90°
t.pencolor("red")#将画笔颜色设置为红色
t.begin_fill()
t.circle(-160)#以右侧距离160的点为圆心画一个正圆
t.color("red")
t.end_fill()#结束填充红色
t.right(90)
t.fd(40)#向前行进40
t.pencolor("white")
t.begin_fill()
t.left(90)
t.circle(-120)
t.color("white")
t.end_fill()
t.right(90)
t.fd(40)
t.pencolor("red")
t.begin_fill()
t.left(90)
t.circle(-80)
t.color("red")
t.end_fill()
t.right(90)
t.fd(40)
t.pencolor("blue")
t.begin_fill()
t.left(90)
t.circle(-40)
t.color("blue")
t.end_fill()
t.right(45)
t.penup()
t.fd(56.5)
t.pendown()
t.pencolor("white")
t.right(117)
t.begin_fill()
#画五角星
for i in range(5):
t.fd(76)
t.right(144) #向右移动144°,注意这里的参数一定不能变
t.color("white")
t.end_fill()
t.hideturtle()#隐藏光标
t.done()#让程序继续执行
运行出来就是漂漂亮亮的图标啦