美国队长盾牌

`import turtle as t
t.penup()
t.goto(0,-200)
t.pendown()
t.color("red")
t.begin_fill()
t.circle(200)
t.end_fill()

t.penup()
t.goto(0,-150)
t.pendown()
t.color("white")
t.begin_fill()
t.circle(150)
t.end_fill()

t.penup()
t.goto(0,-100)
t.pendown()
t.color("red")
t.begin_fill()
t.circle(100)
t.end_fill()

t.penup()
t.goto(0,-55)
t.pendown()
t.color("blue")
t.begin_fill()
t.circle(50)
t.end_fill()

t.penup()
t.goto(-40,10)
t.pendown()
t.color("white")
t.begin_fill()
for i in range(5):
t.forward(80)
t.right(144)
t.end_fill()
`

posted @ 2025-02-25 09:25  ouyeye  阅读(35)  评论(0)    收藏  举报