My python interpreter is acting funky when I use the math.cos() and math.sin() function. For example, if I do this on my calculator:
cos(35)*15+9 = 21.28728066
sin(35)*15+9 = 17.60364655
But when I do this on python (both 3.2 and 2.7)
>>> import math
>>> math.cos(35)*15+9
-4.5553830763726015
>>> import math
>>> math.sin(35)*15+9
2.577259957557734
Why does this happen?
EDIT: How do you change the Radian in Python to degrees, just in case?