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


Python abs()用法及代碼示例


abs()函數用於返回數字的絕對值。
用法:

abs(number)

number:Can be integer, a floating point
number or a complex number

abs()僅接受一個參數,該參數的絕對值將被返回。參數可以是整數,浮點數或複數。

  • 如果參數是整數或浮點數,則abs()以整數或浮點數返回絕對值。
  • 如果是複數,則abs()僅返回幅度部分,也可以是浮點數。
# Python code to illustrate  
# abs() built-in function 
  
# floating point number 
float = -54.26
print('Absolute value of float is:', abs(float)) 
  
# An integer 
int = -94
print('Absolute value of integer is:', abs(int)) 
  
# A complex number 
complex = (3 - 4j) 
print('Absolute value or Magnitude of complex is:', abs(complex))

輸出:

Absolute value of float is:54.26
Absolute value of integer is:94
Absolute value or Magnitude of complex is:5.0


相關用法


注:本文由純淨天空篩選整理自Chinmoy Lenka大神的英文原創作品 abs() in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。