当前位置:   article > 正文

Python源码:用turtle画美国队长盾牌

Python源码:用turtle画美国队长盾牌

解析:

美国队长盾牌结构分析:

有4个圆和一个五角星组成。

源码如下:

import turtle as t
#控制画笔的速度
t.speed(10)
#画最外面的大圆
t.penup()
t.goto(100,-235)
t.pendown()
t.color("red","red")
t.begin_fill()
t.circle(210)
t.end_fill()
#画第二个圆
t.penup()
t.goto(100,-205)
t.pendown()
t.color("white","white")
t.begin_fill()
t.circle(180)
t.end_fill()
#画第三个圆
t.penup()
t.goto(100,-175)
t.pendown()
t.color("red","red")
t.begin_fill()
t.circle(150)
t.end_fill()
#画第四个圆
t.penup()
t.goto(100,-145)
t.pendown()
t.color("blue","blue")
t.begin_fill()
t.circle(120)
t.end_fill()
#画五角星
t.penup()
t.goto(0,0)
t.pendown()
t.color("white","white")
t.begin_fill()
for i in range(0,5):
    t.forward(200)
    t.right(144)
t.end_fill()
#隐藏小海龟
t.hideturtle()

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/116956
推荐阅读
相关标签
  

闽ICP备14008679号