Python中的 turtle.backward() 方法
turtle 模块以面向对象和面向过程的方式提供海龟图形原语。因为它使用 Tkinter 作为底层图形,所以它需要安装一个支持 Tk 的Python版本。
海龟.backward()
turtle.backward() 方法用于将海龟向后移动它所接受的参数值。它给出了一条以向后运动移动到另一个位置或方向的线。
句法:
turtle.backward(distance)
它采用的参数是距离 { 一个数字(整数或浮点数)}。因此,它将海龟向后移动指定的距离,与海龟前进的方向相反。以下是上述方法的实现以及一些示例:
示例 1:
Python3
# importing packages
import turtle
# move turtle backward with
# distance = 100
turtle.backward(100)
Python3
# importing package
import turtle
# move the turtle backward by 50
turtle.backward(50)
# change the direction
turtle.right(90)
# move the turtle backward by 50 again
turtle.backward(50)
输出 :
示例 2:
Python3
# importing package
import turtle
# move the turtle backward by 50
turtle.backward(50)
# change the direction
turtle.right(90)
# move the turtle backward by 50 again
turtle.backward(50)
输出 :