摘要: 用循环画五角星 import turtle turtle.fillcolor('red') turtle.begin_fill() while True: turtle.forward(200) turtle.left(144) if abs(turtle.pos())<1: break turtle.end_fill() done() 用循环画同心... 阅读全文
posted @ 2017-09-14 14:00 吴林鸿 阅读(87) 评论(0) 推荐(0) 编辑