📜  Python-Turtle 中的 turtle.forward() 方法

📅  最后修改于: 2022-05-13 01:55:35.315000             🧑  作者: Mango

Python-Turtle 中的 turtle.forward() 方法

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

乌龟.forward()

turtle.forward() 方法用于将海龟向前移动它所接受的参数值。它给出了移动到另一个位置或方向的一条线。

turtle.forward(distance)

它采用的参数是距离 { 一个数字(整数或浮点数)}。因此,它将海龟向前移动指定的距离,朝着海龟前进的方向。

以下是上述方法的实现以及一些示例:

示例 1:

Python3
# importing packages
import turtle
  
# move turtle forward with 
# distance = 100
turtle.forward(100)


Python3
# importing package
import turtle
  
  
# move the turtle forward by 50
turtle.forward(50)
  
# change the direction
turtle.right(90)
  
# move the turtle forward by 50 again
turtle.forward(50)


输出 :

示例 2:

Python3

# importing package
import turtle
  
  
# move the turtle forward by 50
turtle.forward(50)
  
# change the direction
turtle.right(90)
  
# move the turtle forward by 50 again
turtle.forward(50)

输出 :