语法如下:
import math
result = math.sinh(x)
其中,x 是一个数值。
例如,如果你想计算 1 的双曲正弦值,可以这样写:
import math
result = math.sinh(1)
print(result)
这将输出 1.1752011936438014。
转载请注明出处:http://www.zyzy.cn/article/detail/392/Python3
import math
result = math.sinh(x)
import math
result = math.sinh(1)
print(result)