其他分享
首页 > 其他分享> > turtle-美国队长盾牌

turtle-美国队长盾牌

作者:互联网

import turtle as t

t.speed(0)
t.color('red')
t.begin_fill()
t.circle(100)
t.end_fill()

t.penup()
t.goto(0, 20)
t.pendown()
t.color('white')
t.begin_fill()
t.circle(80)
t.end_fill()

t.penup()
t.goto(0, 40)
t.pendown()
t.color('red')
t.begin_fill()
t.circle(60)
t.end_fill()

t.penup()
t.goto(0, 60)
t.pendown()
t.color('blue')
t.begin_fill()
t.circle(40, 613)   # 注意旋转的圈数。
t.end_fill()

t.color('white')
t.left(107.5)
t.begin_fill()
for i in range(5):
    t.forward(75)
    t.right(144)
t.end_fill()
t.hideturtle()

t.done()

 

标签:turtle,队长,begin,end,penup,color,盾牌,circle,fill
来源: https://www.cnblogs.com/dks0313/p/16699529.html