摘要: 实验任务1 task1_1.py 程序源码: 1 from turtle import * 2 3 def move(x, y):#画笔移动到坐标(x,y)处 4 penup() 5 goto(x, y) 6 pendown() 7 8 def draw(n, size = 100):#绘制边长为s 阅读全文
posted @ 2023-06-11 16:16 Greeeeen 阅读(40) 评论(0) 推荐(0)