📜  Python中的 turtle.sety()函数

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

Python中的 turtle.sety()函数

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

海龟.sety()

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

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

示例 1:

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


Python3
# import package
import turtle
 
# 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 y coordinate
  turtle.up()
  turtle.sety(-40*(i+1))
  turtle.down()
   
  # change the direction
  turtle.left(180)


输出 :

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

示例 2:

Python3

# import package
import turtle
 
# 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 y coordinate
  turtle.up()
  turtle.sety(-40*(i+1))
  turtle.down()
   
  # change the direction
  turtle.left(180)

输出 :