turtle.degrees() function 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.degrees() This method is used to set angle measurement units to degrees. By default the angle measurement unit is "degrees". Syntax: turtle.degrees(fullcircle=360.0) Parameter: fullcircle(optional): a number. Set angle measurement units, i.e. set number of 'degrees' for a full circle. Default value is 360 degrees. Below is the implementation of the above method with an example : Python3 # importing package import turtle # set turtle speed turtle.speed(1) # forward turtle by 100 turtle.forward(100) # turn the turtle (degrees) turtle.left(90) # print heading print(turtle.heading()) # move forward by 100 turtle.forward(100) # set to radians turtle.radians() # turn to left by 90 (radians) turtle.left(1.57079633) # print heading print(turtle.heading()) # move forward by 100 turtle.forward(100) # set to radians turtle.degrees() # turn to left by 90 (degrees) turtle.left(90) # print heading print(turtle.heading()) Output : Comment More infoAdvertise with us Next Article turtle.degrees() function in Python D deepanshu_rustagi Follow Improve Article Tags : Python Python-turtle Practice Tags : python Similar Reads turtle.dot() function 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.dot()This function is used to draw a circular dot with a particular size, wi 2 min read turtle.distance() function 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.distance() This method is used to return the distance from the turtle to (x, 2 min read turtle.addshape() function 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.addshape() This function is used to Adds a turtle shape to TurtleScreen's sh 2 min read turtle.seth() function 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.seth() This method is used to set the orientation of the turtle to to_angle. 2 min read turtle.tilt() function 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.tilt() This function is used to rotate the turtleshape by the angle from its 1 min read Like