📜  Python中的 turtle.setx()函数

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

Python中的 turtle.setx()函数

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

乌龟.setx()

该方法用于设置乌龟的第一个坐标为x,第二个坐标不变。在这里,无论海龟的位置是什么,它都会将 x 坐标设置为给定的输入,保持 y 坐标不变。

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

示例 1:

Python3
# import package
import turtle
 
 
# check the turtle position
print(turtle.position())
 
# set the x coordinate
turtle.setx(30)
 
# check the turtle position
print(turtle.position())
 
# set the x coordinate
turtle.setx(-50)
 
# check the turtle position
print(turtle.position())


Python3
# import package
import turtle
 
 
# set turtle direction
turtle.left(90)
 
# loop for pattern
for i in range(4):
   
  # motion
  turtle.forward(100)
  turtle.right(90)
  turtle.forward(20)
  turtle.right(90)
  turtle.forward(100)
   
  # set the x coordinate
  turtle.up()
  turtle.setx(40*(i+1))
  turtle.down()
   
  # change the direction
  turtle.left(180)


输出 :

(0.0, 0.0)
(30.0, 0.0)
(-50.0, 0.0)

示例 2:

Python3

# import package
import turtle
 
 
# set turtle direction
turtle.left(90)
 
# loop for pattern
for i in range(4):
   
  # motion
  turtle.forward(100)
  turtle.right(90)
  turtle.forward(20)
  turtle.right(90)
  turtle.forward(100)
   
  # set the x coordinate
  turtle.up()
  turtle.setx(40*(i+1))
  turtle.down()
   
  # change the direction
  turtle.left(180)

输出 :