Python Turtle Set Direction

>>> turtle.setheading(90)
>>> turtle.heading()
90.0
#Set the number in set heading to the direction you want the turtle to face.
68Duck