The math.sinh() function  returns the hyperbolic sine of a given number.

Syntax:
math.sinh(x)
copy

Where x is the numeric value whose hyperbolic sine we want.

ExampleEdit & Run
import math

print (math.sinh(7))
print (math.sinh(13))
print (math.sinh(2.5))
print (math.sinh(1))
copy
Output:
548.3161232732465 221206.6960033301 6.0502044810397875 1.1752011936438014 [Finished in 0.010581476613879204s]