Python-turtle 美国队长盾牌

美国队长盾牌python源码

原理:化三环红白红,然后化五角星

#美国队长盾牌
import turtle as t

t.setup(650,650)
#绘制三环红白红
t.pensize(50)
t.speed(10)
t.hideturtle()
#第一环
t.penup()
t.goto(-300,0)
t.pendown()
t.pencolor("red")
t.seth(90)
t.circle(-300,360)
#第二环
#t.penup()
#t.goto(-150,0)
#t.pendown()
#t.pencolor("white")
#t.seth(90)
#t.circle(-150,360)
#第三环
t.penup()
t.goto(-200,0)
t.pendown()
t.color("red","blue")
t.seth(90)
t.begin_fill()
t.circle(-200,360)
t.end_fill()
#五角星
t.pensize(5)
t.penup()
t.goto(0,0)
t.seth(162)
t.fd(175)
t.seth(0)
t.pendown()
t.fillcolor("white")
t.pencolor("white")
t.begin_fill()
for i in range(5):
    t.fd(330)
    t.right(144)
t.end_fill()

t.done()
 

发布了35 篇原创文章 · 获赞 19 · 访问量 5万+

猜你喜欢

转载自blog.csdn.net/m0_37628958/article/details/81171652