摘要: import turtle while True: turtle.forward(100) turtle.right(145) if abs(turtle.pos())<1: break 阅读全文
posted @ 2018-05-14 15:17 Candice_Z 阅读(109) 评论(0) 推荐(0) 编辑
摘要: import turtle turtle.setup(600,400,0,0) turtle.bgcolor('red') turtle.color('yellow') turtle.fillcolor('yellow') turtle.begin_fill() for i in range(5): turtle.forward(100) turtle.left(144) t... 阅读全文
posted @ 2018-05-14 15:09 Candice_Z 阅读(2018) 评论(0) 推荐(0) 编辑