>>> import turtle as t
>>> for i in range(100):
... t.color("red")
... t.fd(i)
... t.right(59)
... t.dot(5)
生活、成长记录
>>> import turtle as t
>>> for i in range(100):
... t.color("red")
... t.fd(i)
... t.right(59)
... t.dot(5)