你的位置:首页 > 信息动态 > 新闻中心
信息动态
联系我们

五角星练习

2021/12/26 22:52:44

from turtle import *
pensize(5)
pencolor('yellow')
fillcolor('red')
begin_fill()
while True:
    fd(200)
    right(144)
    if abs(pos()) < 1:
        break
end_fill()