预科第二天

元气小坏坏 提交于 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()​

 

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!