import turtle
t = turtle.Turtle()
#Changing Rotation
t.leftturn(10) # Turns Left 10 Degrees
t.rightturn(30) # Turns Right 30 Degrees
#############################################
# t.lt() and t.rt() are also abbreviations. #
#############################################