Python海龟绘图

import turtle
t = turtle.Pen()
for x in range(360):
    t.forward(x)
    t.left(90)

  

posted @ 2020-02-05 18:24  极客易先生  阅读(118)  评论(0编辑  收藏  举报