摘要: import turtle def mygoto(x,y): turtle.up() turtle.goto(x,y) turtle.down() def drawStar(x): turtle.fillcolor("yellow") turtle.begin_fill() for i in range(5): turtle.f... 阅读全文
posted @ 2018-03-20 17:02 Polvem 阅读(106) 评论(0) 推荐(0) 编辑