2022年6月14日

实验8

摘要: from turtle import * def square(size=50, rgb='orange'): '''绘制正方形 参数size指定边长 参数rgb指定画笔颜色 如果没有给参数,采用默认值 ''' pencolor(rgb) for i in range(4): fd(size) le 阅读全文

posted @ 2022-06-14 11:33 唔a 阅读(16) 评论(0) 推荐(0) 编辑

导航