本文主要是介绍Python turtle海龟绘制美国队长盾牌,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
使用Python中的turtle模块绘制美队盾牌
具体思路如下:
- 导入海龟库
- 第1个圆:半径 200,红色填充
- 第2个圆:半径 150,白色填充
- 第3个圆:半径 100,红色填充
- 第4个圆:半径 50,蓝色填充
代码如下:(仅供参考,如有错误欢迎指正)
# 导入海龟库
import turtle
t=turtle.Turtle()
t.shape('turtle')
t.speed(0)# 第一个圆:红色,半径200
t.up()
t.goto(0,-200)
t.down()
t.color('red')
t.begin_fill()
t.circle(200)
t.end_fill()# 第二个圆:白色,半径150
t.up()
t.goto(0,-150)
t.down()
t.color('white')
t.begin_fill()
t.circle(150)
t.end_fill()# 第三个圆:红色,半径100
t.up()
t.goto(0,-100)
t.down()
t.color('red')
t.begin_fill()
t.circle(100)
t.end_fill()# 第四个圆:蓝色,半径50
t.up()
t.goto(0,-50)
t.down()
t.color('blue')
t.begin_fill()
t.circle(50)
t.end_fill()# 画五角星
t.up()
t.goto(-40,15)
t.down()
t.color('white')
t.begin_fill()
for i in range(5):t.forward(80)t.right(144)
t.end_fill()# 海龟隐藏hideturtle、显示show
t.hideturtle()
t.hideturtle()
运行效果
这篇关于Python turtle海龟绘制美国队长盾牌的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!