2022年6月14日

实验8 python库应用编程与体验

摘要: task_3 from turtle import * def square(size=50, rgb='orange'): '''绘制正方形 参数size指定边长 参数rgb指定画笔颜色 如果没有给参数,采用默认值 ''' pencolor(rgb) for i in range(4): fd(s 阅读全文
posted @ 2022-06-14 09:31 写作业的xzy 阅读(21) 评论(0) 推荐(0) 编辑