标签:end image 注意 执行 color inf port begin class
1 import turtle 2 import time 3 4 turtle.pensize(1) 5 turtle.pencolor("black") #画笔黑色 6 turtle.fillcolor("red") #内部填充红色 7 #绘制五角星# 8 turtle.begin_fill() 9 for _ in range(5): #重复执行5次 10 turtle.forward(200) #向前移动200步 11 turtle.right(144) #向右移动144度,注意这里的参数一定不能变 12 turtle.end_fill() #结束填充红色 13 time.sleep(1) 14 turtle.mainloop()
标签:end image 注意 执行 color inf port begin class
原文地址:https://www.cnblogs.com/yeu4h3uh2/p/12491978.html