摘要: from turtle import * def position(x,y): up() goto(x,y) down() def draw(size,x,y): position(x,y) color('yellow') begin_fill() fillcolor('yellow') for i in range(5): ... 阅读全文
posted @ 2018-03-19 09:35 104陈颖楠 阅读(132) 评论(0) 推荐(0) 编辑