Python 海龟绘图 100 题——第 76 题
绘制螺旋五角星。
import turtle as t s = 10 for i in range(0,20): t.fd(s) t.rt(144) s = s + 10