预科

预科第二天

元气小坏坏 提交于 2019-12-01 23:44:29
预科第二天 python蟒蛇 import turtle​t = turtle.Pen()t.shape("turtle")t.up()t.fd(-250)t.down()t.seth(-40)t.pensize(25)t.color("red")for i in range(4): t.circle(40,80) t.circle(-40,80)t.left(40)t.fd(20)t.circle(25,180)t.fd(20)turtle.mainloop() python五角星 import turtle#导入海龟包t = turtle.Pen()t.fillcolor("red")t.begin_fill()time = 1while time<=5: t.fd(150) t.right(144) time += 1t.end_fill()​turtle.mainloop() python正方形 import turtle#导入海龟包t = turtle.Pen()t.shape("turtle")t.fillcolor("red")t.begin_fill()for i in range(3): t.fd(100) t.left(120)t.end_fill()​turtle.mainloop()​ 来源: https://www.cnblogs.com

预科之初学

自作多情 提交于 2019-12-01 21:45:32
1.方法的重载定义       定义规则:方法名称必须相同 参数列表必须不同(个数 顺序 类型) 方法返回类型可以相同可以不同 只有返回类型不同不叫重载 来源: https://www.cnblogs.com/9797ch/p/11717694.html