abs() in Python
The abs() function is used to return the absolute value of a number.
Syntax:
abs(number) number : Can be integer, a floating point number or a complex number
The abs() takes only one argument, a number whose absolute value is to be returned. The argument can be an integer, a floating point number or a complex number.
- If the argument is an integer or floating point number, abs() returns the absolute value in integer or float.
- In case of complex number, abs() returns only the magnitude part and that can also be a floating point number.
# Python code to illustrate # abs() built-in function # floating point number float = -54.26print('Absolute value of float is:', abs(float)) # An integer int = -94print('Absolute value of integer is:', abs(int)) # A complex number complex = (3 - 4j) print('Absolute value or Magnitude of complex is:', abs(complex)) |
chevron_right
filter_none
Output:
Absolute value of float is: 54.26 Absolute value of integer is: 94 Absolute value or Magnitude of complex is: 5.0
Recommended Posts:
- Important differences between Python 2.x and Python 3.x with examples
- Reading Python File-Like Objects from C | Python
- Python | Merge Python key values to list
- Python | Sort Python Dictionaries by Key or Value
- Python | Set 4 (Dictionary, Keywords in Python)
- Python | Add Logging to a Python Script
- Python | Add Logging to Python Libraries
- JavaScript vs Python : Can Python Overtop JavaScript by 2020?
- Python | a += b is not always a = a + b
- set add() in python
- Any & All in Python
- SHA in Python
- chr() in Python
- Use of min() and max() in Python
- SQL using Python | Set 1
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.
Improved By : AdityaPandey1



