Python abs() Method – Python Absolute Value With Examples

In this tutorial, we will learn about the python abs() method and its uses with examples.

python abs() - python absolute value

What is python abs() Method?

The abs() is a built-in method available in python. Python abs() method are used to return the python absolute value of the given number. In mathematics, the absolute value is mostly used in distance calculations

The syntax of abs() method:

abs(number)

Python abs() Method Parameters

We can only give a single argument in the abs() function.

Number – A number can be an integer, floating number, or complex number whose absolute value of python will return.

Let us see an example of the abs() function.

Example 1: How to use abs() function on python?

#Integer Number
integer = -32
print(“The Absolute value of the integer variable is:”, abs(integer))
#Floating Number
floating = -12.54
print(“The Absolute value of the floating variable is:”, abs(floating))

The output will be as follows;

The Absolute value of the integer variable is: 32
The Absolute value of the floating variable is: 12.54

Unlike integer and floating numbers, complex numbers will not return any absolute value in python, but instead, they will return a magnitude of the complex number.

Example 2: How to use abs() on complex number?

#Complex Number
complex = (10 – 7j)
print(“The Magnitude of 10 – 7j is:”, abs(complex))

The output is as follows:

The Magnitude of 10 – 7j is: 12.206555615733702

Rules of Python abs()

  1. When the integer value is passed it will return an integer, a float or , a complex values only.
  2. If the floating value is passed it will return an absolute floating value.
  3. On conditions of passing a complex number, abs() function will return a magnitude of the given number.

FAQs

What is abs() in python?

The python abs() function is used to find the absolute value of a given number.

What is the Absolute Value?

The absolute value is commonly used to get the calculations between two locations.

How do you write abs() in python?

The abs() method can is written as abs(number) as per its syntax.

What does abs() mean in python?

The abs() stands for absolute, hence the abs() function is used to find the absolute value of a number.

How to get absolute value in python?

We can use python built-in function abs() to get the absolute value of a number.