摘要: task1-1 源代码 1 from turtle import * 2 3 def move(x, y): 4 '''画笔移动到坐标(x,y)处''' 5 penup() 6 goto(x,y) 7 pendown() 8 9 def draw(n, size=100): 10 '''绘制边长为s 阅读全文
posted @ 2023-06-11 21:39 田羽翼 阅读(7) 评论(0) 推荐(0) 编辑