Python中的 turtle.ycor()函数
turtle 模块以面向对象和面向过程的方式提供海龟图形原语。因为它使用 Tkinter 作为底层图形,所以它需要安装一个支持 Tk 的Python版本。
乌龟.ycor()
该函数用于返回海龟当前位置的海龟y坐标。它不需要任何论据。
句法 :
turtle.ycor()
下面是上述方法的一个例子的实现:
例子 :
Python3
# import package
import turtle
# check y coordinate
print(turtle.ycor())
turtle.forward(100)
# check y coordinate
print(turtle.ycor())
turtle.right(45)
turtle.forward(100)
# check y coordinate
print(turtle.ycor())
turtle.right(90)
turtle.forward(100)
# check y coordinate
print(turtle.ycor())
turtle.right(45)
turtle.forward(100)
# check y coordinate
print(turtle.ycor())
输出 :
0.0
0.0
-70.7106781187
-141.421356237
-141.421356237