Get your own Python server Result Size: 625 x 565
x
 
# Import math Library
import math  
# Return the hyperbolic sine of different values
print(math.sinh(0.00))
print(math.sinh(-23.45))
print(math.sinh(23))
print(math.sinh(1.00))
print(math.sinh(math.pi))
0.0
-7641446994.979367
4872401723.124452
1.1752011936438014
11.548739357257748