代码改变世界

Python44页图

2025-03-09 17:57  nm1137  阅读(24)  评论(0)    收藏  举报

from turtle import*
fillcolor("red")
begin_fill()
while True:
forward(200) right(144)
if abs (pos()) < 1:
break
end_fill()