python中abs函數叫什麼?Abs()abs()是python可用的内置函數,它将為您提供給定輸入的絕對值,接下來我們就來聊聊關于python中abs函數叫什麼?以下内容大家不妨參考一二希望能幫到您!
Abs()
abs()是python可用的内置函數,它将為您提供給定輸入的絕對值。
句法:
abs(value)
參數:(值)
輸入給abs()的輸入值以獲得絕對值。 它可以是整數,浮點數或複數。
返回值:
它将返回給定數字的絕對值。
代碼示例1:整數和浮點數
要獲取整數和浮點數的絕對值,請檢查以下代碼:
# testing abs() for an integer and float
int_num = -25
float_num = -10.50
print("The absolute value of an integer number is:", abs(int_num))
print("The absolute value of a float number is:", abs(float_num))
Output:
The absolute value of an integer number is: 25
The absolute value of a float number is: 10.5
示例2:複數
獲取複數的絕對值
# testing abs() for a complex number
complex_num = (3 10j)
print("The magnitude of the complex number is:", abs(complex_num))
Output:
The magnitude of the complex number is: 10.44030650891055
更多精彩资讯请关注tft每日頭條,我们将持续为您更新最新资讯!