?国旗,五星红旗,星星的大小和朝向略有瑕疵,正在改进中,请勿较真。
import turtle as t
import math
import random
def d5jx(cd,wz1,wz2,jd):
t.penup()
t.goto(wz1,wz2)
t.pendown()
t.seth(jd)
t.pencolor("yellow")
t.fillcolor("yellow")
t.begin_fill()
for i in range(5):
t.fd(cd)
t.rt(144)
t.end_fill()
def cfx():
t.pu()
t.goto(0,0)
t.begin_fill()
t.pencolor("red")
t.fillcolor("red")
t.pd()
for j in range(2):
t.fd(300)
t.lt(90)
t.fd(200)
t.lt(90)
t.end_fill()
def qigan():
t.pu()
t.goto(0,210)
t.pencolor("silver")
t.pensize(10)
t.seth(-90)
t.pd()
t.fd(500)
t.hideturtle()
cfx()
d5jx(55,40,150,0)
d5jx(20,100,170,45)
d5jx(20,120,150,15)
d5jx(20,120,125,-15)
d5jx(20,100,105,-45)
qigan()
t.exitonclick()
|