from __future__ import division
from math import sin
from math import cos
from math import tan
from math import radians
a = raw_input("enter 1 for sin, 2 for cos, 3 for tan")
if a == 1:
degree1 = int(raw_input("Type in angle value: ")
radian = radians(degree3)
sin = sin(radian)
print sin
elif a == 2:
degree2 = int(raw_input("Type in angle value: ")
radian = radians(degree2)
cos = cos(radian)
print cos
elif a == 3:
degree3 = int(raw_input("Type in angle value: ")
radian = radians(degree3)
tan = tan(radian)
print tan
Erm... anyway to fix this? It says syntax error for the variables and print, and the raw_input under the if and elif is not shown.