reset a turtle python
import turtle
t = turtle.Turtle()
#A Drawing
t.lt(50)
t.fd(100)
#Resets the turtles rotation, position, and drawings
t.reset()
######################################################
# The reset() function doesn't require any arguments #
######################################################