返回数的绝对值:
x = abs(-3.14)print(x)
x = abs(-3.14)
print(x)
abs() 返回指定数字的绝对值。
abs()
abs(n)
返回复数的绝对值:
x = abs(5+6j)print(x)
x = abs(5+6j)