Python abs() FunctionThe python abs() function is used to return absolute value of a number. It takes only one argument, a number whose absolute value is to be returned. The argument can be an integer and floating point number. If the argument is a complex number, then, abs() returns its magnitude. Signature
Parameters
ReturnIt returns the absolute value of the specified number. Python abs() Function Example 1Let's see an example to get absolute value of a number. Output: Absolute value of -40 is: 40 Absolute value of -40.83 is: 40.83 Python abs() Function Example 2This example shows magnitude of a complex number. Output: Magnitude of 3 - 4j is: 5.0 Next TopicPython Built in Functions |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India