Python 海龟绘图 100 题——第 74 题
绘制螺旋三角形。
import turtle as t s = 20 for i in range(0,14): t.fd(s) t.rt(120) s=s+10