rotation turtle python

Solutions on MaxInterview for rotation turtle python by the best coders in the world

showing results for - "rotation turtle python"
Léonie
26 Sep 2018
1import turtle
2t = turtle.Turtle()
3
4#Setting Rotation
5t.setheading(0) # This Faces Right
6t.setheading(180) # This Faces Left
7t.setheading(90) # This Faces Up
8t.setheading(270) # This Faces Down
9
10###################################
11# Values are measured in degrees #
12###################################
Facundo
15 Sep 2018
1import turtle
2t = turtle.Turtle()
3
4#Changing Rotation
5t.leftturn(10) # Turns Left 10 Degrees
6t.rightturn(30) # Turns Right 30 Degrees
7
8#############################################
9# t.lt() and t.rt() are also abbreviations. #
10#############################################