turtle画图代码乡村
时间: 2023-07-09 16:15:53 浏览: 102
turtle画图代码大全
以下是使用Python中的turtle库画出一个村庄的示例代码:
```python
import turtle
# 设置画笔
turtle.setup(800, 600)
turtle.penup()
turtle.goto(-400, -300)
turtle.pendown()
turtle.pensize(5)
turtle.speed(10)
# 画房子
turtle.fillcolor('lightblue')
turtle.begin_fill()
for i in range(4):
turtle.forward(200)
turtle.right(90)
turtle.end_fill()
# 画屋顶
turtle.fillcolor('brown')
turtle.begin_fill()
turtle.right(45)
turtle.forward(141)
turtle.right(90)
turtle.forward(141)
turtle.end_fill()
# 画门
turtle.penup()
turtle.goto(-50, -300)
turtle.pendown()
turtle.pensize(1)
turtle.fillcolor('white')
turtle.begin_fill()
turtle.circle(30)
turtle.end_fill()
# 画窗户
turtle.penup()
turtle.goto(-130, -200)
turtle.pendown()
turtle.pensize(3)
turtle.fillcolor('yellow')
turtle.begin_fill()
for i in range(4):
turtle.forward(50)
turtle.right(90)
turtle.end_fill()
# 画树
turtle.penup()
turtle.goto(100, -300)
turtle.pendown()
turtle.pensize(10)
turtle.color('brown')
turtle.right(90)
turtle.forward(150)
turtle.color('green')
turtle.fillcolor('green')
turtle.begin_fill()
turtle.circle(60)
turtle.end_fill()
# 画太阳
turtle.penup()
turtle.goto(250, 200)
turtle.pendown()
turtle.pensize(3)
turtle.color('yellow')
turtle.fillcolor('yellow')
turtle.begin_fill()
turtle.circle(50)
turtle.end_fill()
# 隐藏画笔
turtle.hideturtle()
# 等待用户关闭窗口
turtle.done()
```
运行该代码,将会看到一个简单的村庄图像。你可以根据自己的需求进行修改和扩展。
阅读全文