摘要: 1.画五角星 from turtle import*for i in range(5): forward(150) right(144) 2.画同心圆 from turtle import*for i in range(5): circle(30*(i+1)) write(10-i) up() go 阅读全文
posted @ 2017-09-12 13:43 007王俊祺 阅读(151) 评论(0) 推荐(0) 编辑