{"id":24375,"date":"2021-10-14T09:46:35","date_gmt":"2021-10-14T04:16:35","guid":{"rendered":"https:\/\/python-programs.com\/?p=24375"},"modified":"2021-11-05T21:06:37","modified_gmt":"2021-11-05T15:36:37","slug":"python-program-for-acosh-function","status":"publish","type":"post","link":"https:\/\/python-programs.com\/python-program-for-acosh-function\/","title":{"rendered":"Python Program for acosh() Function"},"content":{"rendered":"

In the previous article, we have discussed Python Program for tan() Function<\/a>
\nacosh() Function in Python:<\/strong><\/p>\n

The inverse hyperbolic cosine of a number is returned by the math.acosh() method.<\/p>\n

It should be noted that the parameter passed to acosh() must be greater than or equal to 1.<\/p>\n

Syntax:<\/strong><\/p>\n

math.acosh(x)<\/pre>\n

Parameter:<\/strong><\/p>\n

x:<\/strong> This is required. A positive number greater than or equal to one. If x is not a number, a TypeError is returned.<\/p>\n

Return Value:<\/strong><\/p>\n

The inverse hyperbolic cosine of x is represented as a float in the return value.<\/p>\n