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()
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值