math.tanh(x)

本页内容
上一节: Ref_math_tan 下一节: Ref_math_trunc

Python math.tanh() 方法

Python math 模块

Python math.tanh(x) 返回 x 的双曲正切值。

Python 版本: 1.4

语法

math.tanh() 方法语法如下:


示例

math.tanh(x)

参数说明:

  • x -- 必需,个正数或负数。如果 x 不是一个数字,返回 TypeError。

返回值

返回一个浮点数,表示一个数字的双曲正切值。

==

以下实例返回不同数字的双曲正切值:


示例

# 导入 math 包

import math

# 输出双曲正切值

print(math.tanh(8))

print(math.tanh(1))

print(math.tanh(-6.2))

输出结果:


示例

0.9999997749296758
0.7615941559557649
-0.9999917628565104

Python math 模块

上一节: Ref_math_tan 下一节: Ref_math_trunc
此页面最后编辑于2022年8月17日 (星期三) 21:52。