摘要: 任务一 1 1 from turtle import * 2 def move(x, y): 3 '''画笔移动到坐标(x,y)处''' 4 penup() 5 goto(x, y) 6 pendown() 7 def draw(n, size = 100): 8 '''绘制边长为size的正n变形 阅读全文
posted @ 2023-06-09 19:04 (o‿∩) 阅读(46) 评论(0) 推荐(0)