Open In App

turtle.ycor() function in Python

Last Updated : 21 Jul, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The turtle module provides turtle graphics primitives, in both object-oriented and procedure-oriented ways. Because it uses Tkinter for the underlying graphics, it needs a version of Python installed with Tk support.

turtle.ycor()

This function is used to return the turtle’s y coordinate of the current position of turtle. It doesn’t require any argument.

Syntax :

turtle.ycor()

Below is the implementation of the above method with an example :

Example :

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())


Output :

0.0
0.0
-70.7106781187
-141.421356237
-141.421356237

Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads