Python中的turtle.seth()函数

Python中的turtle.seth()函数

turtle模块以面向对象和面向过程的方式提供Turtle图形基元。因为它使用 Tkinter 作为底层图形,它需要安装一个支持 Tk 的 Python 版本。

turtle.seth()

该方法用于将Turtle的方向设置为to_angle。这个方法只需要一个参数作为角度。

这两个是这个方法的别名 – setheading , seth。

语法: turtle.seth(to_angle) or turtle.setheading(to_angle)

参数:

to_angle:一个数字(整数或浮点数)。

将Turtle的方向设置为to_angle。下面是一些常见的方向,单位是度(标准-模式)。

  • 0 – 东部
  • 90 – 北部
  • 180-西部
  • 270-南部

下面是上述方法的实现,并附有一个例子。

示例:

# import package
import turtle
  
  
# set direction at 0
# angle using seth
turtle.seth(0)
  
# motion
turtle.forward(80)
turtle.write("East")
  
# back to home
turtle.home()
  
# set direction at 90
# angle using sethading
turtle.setheading(90)
  
# motion
turtle.forward(80)
turtle.write("North")
  
# back to home
turtle.home()
  
# set direction at 180
# angle using seth
turtle.seth(180)
  
# motion
turtle.forward(80)
turtle.write("West",align="right")
  
# back to home
turtle.home()
  
# set direction at 270
# angle using setheading
turtle.setheading(270)
  
# motion
turtle.forward(80)
turtle.write("South")
  
# hide the turtle
turtle.ht()

输出 :

Python中的turtle.seth()函数

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

Python Turtle