Python/ref math acosh

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python math.acosh()方法

Methods数学方法

返回不同数字的反双曲余弦值:

    # Import math Library
import math 

# Return the inverse hyperbolic 
    cosine of different numbers
print (math.acosh(7))
print (math.acosh(56))
print (math.acosh(2.45)) 
    
print (math.acosh(1)) 
 

定义和用法

The math.acosh() 方法返回数字的反双曲余弦值。

注意: 在acosh()中传递的参数必须大于或等于1。

句法

math.acosh(x)

参数值

参数 描述
x 需要。正数> = 1。If

x 不是数字,则返回TypeError

技术细节

返回值: A

float 值,表示的反双曲余弦值 x

Python版本: 2.6

Methods数学方法