turtle.reset() function in Python Last Updated : 28 Jul, 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.reset() This function is used to delete the turtle's drawings and restore its default values. It doesn't require any argument. Syntax : turtle.reset() Below is the implementation of the above method with some examples : Example 1 : Python3 # import package import turtle # motion for i in range(20): turtle.forward(2+2*i) turtle.left(45) # reset the work turtle.reset() Output : Example 2 : Python3 # import package import turtle # make turtle objects # and set position t1 = turtle.Turtle() t2 = turtle.Turtle() t1.up() t1.setpos(-70, 0) t1.down() t2.up() t2.setpos(70, 0) t2.down() # loop for pattern for i in range(20): t1.forward(2+2*i) t1.left(45) t2.forward(2+2*i) t2.left(90) # reset first turtle # another remain as it is t1.reset() Output : Comment More infoAdvertise with us Next Article turtle.reset() function in Python D deepanshu_rustagi Follow Improve Article Tags : Python Python-turtle Practice Tags : python Similar Reads turtle.sety() 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.sety() This method is used to set the turtle's second coordinate to y, leavi 1 min read turtle.setx() 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.setx() This method is used to set the turtle's first coordinate to x, leave 1 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.resetscreen() 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.resetscreen() This function is used to reset all Turtles on the Screen to th 1 min read turtle.stamp() 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.stamp() This method is used to stamp a copy of the turtleshape onto the canv 1 min read Like