Python math.fabs() 方法
例如:
返回绝对值:
#Import math Libraryimport math#打印绝对值print(math.fabs(-66.43))print(math.fabs(-7))
1、定义和用法
math.fabs()
方法以浮点数形式返回数字的绝对值。
绝对表示非负数。 如果有负号,则将其删除。
与Python abs()不同,此方法始终将值转换为浮点值。
2、调用语法
math.fabs(x)
3、参数说明
参数 | 描述 |
x | 必需的参数, 一个号码。 如果我们尝试除数字以外的任何其他方法, 它将返回TypeError |
4、方法说明
返回值: |
|
Python Version: | 2.6 |