摘要: import turtle# 定义一个函数,可以画五角星def mygoto(x ,y): turtle.up() turtle.goto(x, y) turtle.down()def draw(x): turtle.begin_fill() for i in range(5): turtle.fo 阅读全文
posted @ 2018-03-19 09:27 098-谢家豪 阅读(150) 评论(0) 推荐(0) 编辑