當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。