用Python画一个小房子
时间: 2023-11-16 15:59:30 浏览: 180
简单python-画房子
5星 · 资源好评率100%
可以使用Python的turtle模块来画一个小房子。以下是一个示例代码:
```python
import turtle
# 画正方形
def draw_square():
for i in range(4):
turtle.forward(100)
turtle.right(90)
# 画三角形
def draw_triangle():
turtle.right(45)
turtle.forward(70)
turtle.right(90)
turtle.forward(70)
# 画房子
def draw_house():
draw_square()
turtle.right(90)
turtle.forward(100)
draw_triangle()
# 设置画布和画笔
turtle.setup(500, 500)
turtle.pensize(5)
# 画房子
draw_house()
# 隐藏画笔
turtle.hideturtle()
# 显示画布
turtle.done()
```
运行代码后,会在画布上画出一个小房子。你也可以根据自己的需求修改代码中的参数,例如画布大小、画笔粗细等等。
阅读全文