turtle.xcor() function in Python
Last Updated :
21 Jul, 2020
Improve
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.xcor()
This function is used to return the turtle's x coordinate of the current position of turtle. It doesn't require any argument.
Syntax :
turtle.xcor()
Below is the implementation of the above method with an example :
Example :
# import package
import turtle
# check x coordinate
print(turtle.xcor())
turtle.forward(100)
# check x coordinate
print(turtle.xcor())
turtle.right(45)
turtle.forward(100)
# check x coordinate
print(turtle.xcor())
turtle.right(90)
turtle.forward(100)
# check x coordinate
print(turtle.xcor())
turtle.right(45)
turtle.forward(100)
# check x coordinate
print(turtle.xcor())
Output :
0.0 100.0 170.710678119 100.0 0.0