赞
踩
解析:
美国队长盾牌结构分析:
有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()
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。