Python math.tanh() 方法
例如:
查找不同数字的双曲正切值:
# Import math Library
import math
# 返回不同数字的双曲正切
print(math.tanh(8))
print(math.tanh(1))
print(math.tanh(-6.2))
1、定义和用法
math.tanh()
方法返回数字的双曲正切值。
2、调用语法
math.tanh(x)
3、参数说明
参数 | 描述 |
x | 必需的参数, 查找双曲正切的数字。 如果该值不是数字,则返回TypeError |
4、方法说明
返回值: |
|
Python Version: | 1.4 |