How to calculate the inverse hyperbolic sine of a number in Python

1 Answer

0 votes
import math

print(math.asinh(9))

print(math.asinh(-4))




'''
run:

2.8934439858858716
-2.0947125472611012

'''

 



answered Aug 10, 2022 by avibootz

Related questions

...