Published
- 1 min read
rotation turtle python
The solution for this is noted below
rotation turtle python
Solution
import turtle
t = turtle.Turtle()
#Setting Rotation
t.setheading(0) # This Faces Right
t.setheading(180) # This Faces Left
t.setheading(90) # This Faces Up
t.setheading(270) # This Faces Down
###################################
# Values are measured in degrees #
###################################
Try other methods by searching on the site. That is if this doesn’t work