Python 海龟绘图 100 题——第 75 题
绘制螺旋五边形。
import turtle as t s = 10 for i in range(0,20): t.fd(s) t.rt(60) s = s + 5