摘要: import turtlebob = turtle.Turtle()#画四方形def square(t,length): for i in range(4): t.lt(90) t.fd(length)square(bob,200)#画多边形def polygon(t,length,n): for 阅读全文
posted @ 2017-10-25 16:04 小阿肉 阅读(3973) 评论(0) 推荐(0) 编辑