python用turtle画田字格
时间: 2023-10-21 22:05:39 浏览: 168
python画图-使用Python+turtle实现画名字.zip
可以使用 Python 标准库中的 turtle 模块来画田字格。下面是一个示例代码:
```python
import turtle
# 设置画笔大小和颜色
turtle.pensize(2)
turtle.pencolor("black")
# 画横线
turtle.penup()
turtle.goto(-200, 100)
turtle.pendown()
turtle.forward(400)
# 画竖线
turtle.penup()
turtle.goto(-100, 200)
turtle.setheading(-90)
turtle.pendown()
turtle.forward(400)
# 画横线
turtle.penup()
turtle.goto(-200, 0)
turtle.setheading(0)
turtle.pendown()
turtle.forward(400)
# 画竖线
turtle.penup()
turtle.goto(0, 200)
turtle.setheading(-90)
turtle.pendown()
turtle.forward(400)
# 隐藏画笔
turtle.hideturtle()
# 等待用户关闭窗口
turtle.done()
```
这段代码会在窗口中绘制一个田字格。你可以根据需要更改画笔的大小和颜色。
阅读全文