下面开始,今天的函数是abs()


先看官方英文文档解释


abs(x)

Return the absolute value of a number. The argument may be a plain or long integer or a floating point number. If the argument is a complex number, its magnitude is returned.


详解:

返回绝对值

参数可以是:负数、正数、浮点数或者长×××

实例:

abs(-1.2) #返回 1.2
  
abs(1.2) #返回 1.2
  
abs(-11216.5) #返回 11216.5
  
abs(11216.5) #返回 11216.5

注意点:参数可以是负数也可以为正数。只会取绝对值,不会做取整。