当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python math.fabs()用法及代码示例


在Python中,数学模块包含许多数学运算,可以使用该模块轻松执行。math.fabs()函数返回数字的绝对值。

用法: math.fabs(x)

参数:
x: This is a numeric expression.

返回: the absolute value of the number.

代码1:

# Python code to demonstrate the working of fabs() 
    
# importing "math" for mathematical operations  
import math  
    
x = -33.7
    
# returning the fabs of 33.7 
print ("The fabs of 33.7 is:", end ="")  
print (math.fabs(x))
输出:
The fabs of 33.7 is:33.7


代码2:

# Python code to demonstrate the working of fabs() 
    
# importing "math" for mathematical operations  
import math  
    
# prints the fabs using fabs() method  
print ("math.fabs(-13.1):", math.fabs(-13.1)) 
print ("math.fabs(101.96):", math.fabs(101.96))
输出:
math.fabs(-13.1): 13.1
math.fabs(101.96): 101.96


相关用法


注:本文由纯净天空筛选整理自Shivam_k大神的英文原创作品 Python | math.fabs() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。