turtle.pos() method in Python Last Updated : 01 Aug, 2020 Comments Improve Suggest changes Like Article Like 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.pos() This method is used to find the turtle's current location (x, y), as a Vec2D-vector. This method has the Aliases: pos | position. Syntax: turtle.pos() or turtle.position() Return: turtle's current location in terms of (x, y) coordinate This function does not require any argument and returns the current position of the turtle in the format (x,y) where x and y represent the 2D vector. The default value is (0.0, 0.0). Below is the implementation of the above method with some examples : Example 1 : Python3 # import turtle package import turtle # print the default # position i.e; (0.0, 0.0) print(turtle.pos()) # forward turtle by 150 pixels turtle.forward(150) # print current position # i.e; (150.0, 0.0) print(turtle.pos()) # forward turtle by 150 pixels # after taking turn right # by 90 degrees turtle.right(90) turtle.forward(150) # print position (after next move) # i.e; (150.0, -150.0) print(turtle.pos()) Output: (0.0, 0.0) (150.0, 0.0) (150.0, -150.0) Example 2: Python3 # import turtle package import turtle # print position (by default) # i.e; (0.0, 0.0) print(turtle.pos()) # turtle move forward # by 40 pixels turtle.forward(40) # print position (after move) # i.e; (150.0, 0.0) print(turtle.position()) # turtle move forward by 40 pixels # after taking right turn # by 45 degrees turtle.right(45) turtle.forward(40) # print position # (after next move) print(turtle.pos()) # turtle move forward by 80 # pixels after taking left # turn by 90 degrees turtle.left(90) turtle.forward(80) # print position # (after next move) print(turtle.pos()) # turtle move forward # by 40 pixels after taking # right turn by 90 degrees turtle.right(90) turtle.forward(40) # print position (after next move) print(turtle.position()) # turtle move forward by # 40 pixels after taking # left turn by 45 degrees turtle.left(45) turtle.forward(40) # print position # (after final move) print(turtle.pos()) Output : (0.0, 0.0) (40.0, 0.0) (68.2842712475, -28.2842712475) (124.852813742, 28.2842712475) (153.13708499, 0.0) (193.13708499, 0.0) Comment More infoAdvertise with us Next Article turtle.pos() method in Python D deepanshu_rustagi Follow Improve Article Tags : Python Python-turtle Practice Tags : python Similar Reads turtle.up() method in Python 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.up() The turtle.up() method is used to pull the pen up from the screen. It g 1 min read turtle.left() method in Python 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.left() The turtle.left() method is used to change the direction of the turtl 2 min read turtle.down() method in Python 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.down() The turtle.down() method is used to pull back the pen down on the scr 1 min read turtle.right() method in Python 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.right() The turtle.right() method is used to change the direction of the tur 2 min read turtle.color() method in Python turtle.color() method is a function of the turtle module in Python used to change the color of the turtleâs pen and fill. It allows us to customize the appearance of shapes drawn by the turtle by specifying colors using color names, RGB values, or hex codes.Syntaxturtle.color(*args)The *args allows 3 min read Python - turtle.pencolor() method 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.pencolor() : This method is used to change the color of the ink of the turtl 2 min read turtle.circle() method in Python The Turtle module in Python provides a fun and interactive way to introduce graphics programming. One of its key functions is turtle.circle(), which is used to draw circles (or parts of circles) and can even be used to create regular polygons by specifying the number of steps.Example: Drawing a simp 2 min read Python - turtle.delay() method Turtle graphics is a popular way for introducing programming to kids. It was part of the original Logo programming language developed by Wally Feurzeig, Seymour Papert and Cynthia Solomon in 1967. The turtle module provides turtle graphics primitives, in both object-oriented and procedure-oriented w 1 min read turtle.backward() method in Python 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.backward() The turtle.backward() method is used to move the turtle backward 1 min read turtle.clearstamp() method in Python 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.clearstamp() The turtle.clearstamp() method is used to delete all or first/l 2 min read Like