Python turtle.seth使用方法
时间: 2024-04-29 15:11:08 浏览: 176
python中turtle库的简单使用教程
5星 · 资源好评率100%
turtle.seth(angle) 方法用于设置海龟的朝向。其中 angle 是一个数字类型的参数,表示将海龟的朝向设置为指定的角度。角度的单位是度数,正方向为东,逆时针旋转。
例如,turtle.seth(90) 将把海龟朝向设置为正北方向。
实例:
```
import turtle
# 创建海龟对象
t = turtle.Turtle()
# 设置海龟朝向为正东方向
t.seth(0)
# 前进 100 像素
t.forward(100)
# 设置海龟朝向为正南方向
t.seth(270)
# 前进 100 像素
t.forward(100)
# 设置海龟朝向为正西方向
t.seth(180)
# 前进 100 像素
t.forward(100)
# 设置海龟朝向为正北方向
t.seth(90)
# 前进 100 像素
t.forward(100)
# 等待用户关闭窗口
turtle.done()
```
运行结果为:
![turtle_seth.png](https://cdn.jsdelivr.net/gh/dustyposa/img/turtle_seth.png)
阅读全文