python abs()函数

>>> help(abs)
Help on built-in function abs in module __builtin__:
abs(...)
    abs(number) -> number
    Return the absolute value of the argument.

>>> 

详解:返回绝对值,参数可以是:浮点数,整型或长整型,正数,负数。

实例:

>>> abs(8)
8
>>> abs(-8)
8
>>> abs(0)
0
>>> abs(8.9)
8.9
>>> abs(-9.8)
9.8
>>> abs(2L)
2L
>>> abs(-2l)
2L
abs()求一个数字的绝对值(该数字在坐标轴上 到 坐标原点的距离)。

你可能感兴趣的:(python,python,abs函数)