>>> import math >>> math.sin(68) -0.897927680689
But
sin(68) = 0.927 (3 decimal places)
Any ide
by default angle in Python is calculated in radians. So, you can try to multiply the angle ( degrees ) by 0.01745 - to convert it to degrees and input the values. print(math.sin(60*0.01745)) 0.8659266112878228