摘要:
task3.py 1 from turtle import * 2 3 def square(size=50, rgb='orange'): 4 '''绘制正方形 5 参数size指定边长 6 参数rgb指定画笔颜色 7 如果没有给参数,采用默认值 8 ''' 9 pencolor(rgb) 10 阅读全文
2022年6月14日
2022年6月7日
2022年5月25日
2022年5月16日
2022年4月27日
2022年4月13日
2022年3月28日
摘要:
task1_1.py 1 print('hey, u') 2 print('hey', ' u') 3 x,y,z = 1,2,3 4 print(x, y, z) 5 print('x = %d, y = %d, z = %d' %(x,y,z)) 6 print('x = {}, y = {}, 阅读全文
摘要:
1 print('hey, u') 2 3 print('hey', ' u') 4 x,y,z = 1,2,3 5 print(x, y, z) 6 7 print('x = %d, y = %d, z = %d'%(x,y,z)) 8 print('x = {}, y = {}, z = {}' 阅读全文