python海龟命令画城堡
时间: 2023-08-31 08:05:05 浏览: 109
python实现海龟绘图程序
下面是一个基本的Python海龟命令画城堡的示例代码:
```python
import turtle
# 设置画笔
t = turtle.Pen()
t.speed(0) # 设置画笔速度为最快
# 画城堡墙壁
t.pensize(5)
t.color('gray')
t.begin_fill()
for i in range(4):
t.forward(200)
t.right(90)
t.end_fill()
# 画城堡门
t.penup()
t.goto(80, -50)
t.pendown()
t.color('brown')
t.begin_fill()
t.forward(40)
t.left(90)
t.forward(80)
t.left(90)
t.forward(40)
t.left(90)
t.forward(80)
t.end_fill()
# 画城堡旗帜
t.penup()
t.goto(0, 110)
t.pendown()
t.color('red')
t.begin_fill()
t.forward(40)
t.left(120)
t.forward(80)
t.left(120)
t.forward(80)
t.left(120)
t.forward(40)
t.end_fill()
# 画城堡塔
t.penup()
t.goto(-100, 0)
t.pendown()
t.color('gray')
t.begin_fill()
t.circle(50)
t.end_fill()
# 画城堡塔顶
t.penup()
t.goto(-100, 100)
t.pendown()
t.begin_fill()
t.color('brown')
t.circle(20)
t.end_fill()
# 画城堡另一个塔
t.penup()
t.goto(100, 0)
t.pendown()
t.color('gray')
t.begin_fill()
t.circle(50)
t.end_fill()
# 画城堡另一个塔顶
t.penup()
t.goto(100, 100)
t.pendown()
t.begin_fill()
t.color('brown')
t.circle(20)
t.end_fill()
# 隐藏画笔
t.hideturtle()
# 点击关闭窗口
turtle.exitonclick()
```
代码解释:
- 创建一个海龟对象t。
- 画城堡墙壁:设置画笔粗细和颜色,然后使用for循环画出四个边长为200的正方形。
- 画城堡门:使用penup()抬起画笔,goto()移动到门的位置,pendown()放下画笔,然后画出门的形状。
- 画城堡旗帜:使用penup()抬起画笔,goto()移动到旗帜的位置,pendown()放下画笔,然后画出旗帜的形状。
- 画城堡塔:使用penup()抬起画笔,goto()移动到塔的位置,pendown()放下画笔,然后画出塔的形状。
- 画城堡塔顶:使用penup()抬起画笔,goto()移动到塔顶的位置,pendown()放下画笔,然后画出塔顶的形状。
- 隐藏画笔,然后等待用户单击窗口关闭程序。
运行上述代码后,将会在窗口中画出一个城堡。
阅读全文