2019年11月25日
摘要: ```pythonimport turtlestep = 40for i in range(8): for j in range(8): turtle.penup() turtle.goto(i*step, j*step) turtle.pendown() turtle.begin_fill() ... 阅读全文
posted @ 2019-11-25 21:56 行之间 阅读(2321) 评论(0) 推荐(0) 编辑