摘要: import turtle while True: turtle.forward(110) turtle.right(190) if abs(turtle.pos())<1: break turtle.done() 阅读全文
posted @ 2018-05-14 15:29 邱楚峻 阅读(116) 评论(0) 推荐(0) 编辑
摘要: import turtle # 设置初始位置 turtle.penup() turtle.left(90) turtle.fd(200) turtle.pendown() turtle.right(90) # 花蕊 turtle.fillcolor("red") turtle.begin_fill() turtle.circle(10, 180) turtle.circle(25, 110)... 阅读全文
posted @ 2018-05-14 15:25 邱楚峻 阅读(205) 评论(0) 推荐(0) 编辑