import turtle as t
t.color("red")
for i in range(270):
   t.fd(i)
   t.left(70)#海龟左转 70个单位。
t.done()

 

更多推荐

简单的海龟代码