import math

angle = 60

result = math.sin(math.radians(angle))

print("The sine of", angle, "degrees is", result)

What is the output of the python program

Posted on by