How to use acosh() function to get the inverse hyperbolic cosine of a number in Python

1 Answer

0 votes
import math

print(math.acosh(7))
print(math.acosh(10))
print(math.acosh(22.79))


'''
run:

2.6339157938496336
2.993222846126381
3.818987336573801

'''

 



answered Oct 2, 2017 by avibootz
...