在python中如何画圆?
提问人:杨紫红发布时间:2020-11-18
import turtle #引进海龟,你可以开始使用它
myColor=["red","green","brown"]
index =0
for x in range(250):
turtle.pencolor(myColor[index])
index +=1
if index == 3:
index = 0
turtle.forward(x*2)
turtle.left(92)
继续查找其他问题的答案?
相关视频回答
回复(0)
点击加载更多评论>>