画蟒蛇的一段小代码
画蟒蛇的一小段代码如下:
1 import turtle as t 2 t.setup(650,350,200,200) 3 t.penup() 4 t.fd(-250) 5 t.pendown() 6 t.pensize(25) 7 t.pencolor("purple") 8 t.seth(-40) 9 for i in range(4): 10 t.circle(40,80) 11 t.circle(-40,80) 12 t.circle(40,80/2) 13 t.fd(40) 14 t.circle(16,180) 15 t.fd(40*2/3) 16 t.done