Get your own Python server Result Size: 625 x 565
x
 
# Import math Library
import math
# Return the sine of different numbers
print (math.sin(0.00))
print (math.sin(-1.23))
print (math.sin(10))
print (math.sin(math.pi))
print (math.sin(math.pi/2))
0.0
-0.9424888019316975
-0.5440211108893698
1.2246467991473532e-16
1.0