其他分享
首页 > 其他分享> > 绘制五角星代码

绘制五角星代码

作者:互联网

#高手代码
from turtle import *
color("red","yellow")
begin_fill()
hideturtle()
speed(1)
while True:
forward(200)
right(144)
if abs(pos())<1:
break
end_fill()
done()

#初学Python的代码

 


 

 

标签:turtle,200,right,color,代码,五角星,绘制,fill
来源: https://www.cnblogs.com/ni-huang-feng-wu/p/14773987.html