2018年3月21日
摘要: import turtle def gotoPoint(x, y): turtle.up() turtle.goto(x, y) turtle.down() def drawStar(x): turtle.begin_fill() for i in range(5): turtle.forward(x) turtle.right(144) turtle... 阅读全文
posted @ 2018-03-21 18:28 208胡德霖 阅读(103) 评论(0) 推荐(0) 编辑