赞
踩
代码如下:
from turtle import *color('red','yellow')begin_fill()while True: forward(200) left(170) if abs(pos())<1: breakend_fill()done()
运行结果: