国旗,星星,70,i,♥,u
一个简单的图画致敬70
import turtle as t
def picture(x1,y1,x,y):
t.up()
t.goto(x1,y1)
t.down()
t.begin_fill()
t.fillcolor("yellow")
for i in range(5):
t.fd(x)
t.left(y)
t.end_fill()
t.speed(10)
t.bgcolor("red")
t.color("yellow")
t.speed(10)
picture(-650,230,100,144)
picture(-431,290,60,144)
picture(-430,181,60,144)
picture(-500,81,60,144)
picture(-610,65,60,144)
t.speed(10)
t.pencolor("gold")
t.pensize(25)
t.pu()
t.goto(10,10)
t.pd()
t.fd(140)
t.circle(-80,2)
t.seth(-110)
t.circle(1000,14)
t.pu()
t.goto(200,-150)
t.pd ()
t.circle(70,180)
t.fd(90)
t.circle(70,180)
t.fd(90)
t.goto(200,-150)
t.pd ()
t.circle(70,180)
t.fd(90)
t.circle(70,180)
t.fd(90)
t.clear()
t.pencolor("gold")
t.pensize(25)
t.pu()
t.bgcolor("white")
t.goto(-350,100)
t.pd()
t.seth (0)
t.fd(110)
t.bk(55)
t.seth(-90)
t.fd(200)
t.seth (0)
t.fd(55)
t.bk(110)
t.pu()
t.goto(5,60)
t.pencolor ("red")
t.pensize(25)
t.pd()
t.begin_fill()
t.fillcolor("red")
t.seth(75)
t.circle(-50,70)
t.circle(-60,75)
t.circle(-40,60)
t.fd(150)
t.seth(135)
t.fd(150)
t.circle(-40,60)
t.circle(-60,75)
t.circle(-50,70)
t.end_fill()
t.pu()
t.goto(230,100)
t.pencolor("gold")
t.pensize(25)
t.pd()
t.seth(-90)
t.fd(140)
t.circle(60,180)
t.fd(140)
t.done()
来源:CSDN
作者:xcdq
链接:https://blog.csdn.net/xcdq_aaa/article/details/103833637