The Python abs() function return the absolute value. The absolute value of any number is always positive it removes the negative sign of a number in Python.
Example:
Input: -29
Output: 29
Python abs() Function Syntax
The abs() function in Python has the following syntax:
Syntax: abs(number)
- number: Integer, floating-point number, complex number.
Return: Returns the absolute value.
Python abs() Function Example
Let us see a few examples of the abs() function in Python.
abs() Function with an Integer Argument
In this example, we will pass an Integer value as an argument to the abs() function in Python and print its value to see how it works.
Python
# An integer
var = -94
print('Absolute value of integer is:', abs(var))
Output:
Absolute value of integer is: 94
abs() Function with a Floating-Point Number
In this example, we will pass a float data into the abs() function and it will return an absolute value.
Python3
# floating point number
float_number = -54.26
print('Absolute value of float is:',
abs(float_number))
Output:
Absolute value of float is: 54.26
abs() Function with a Complex Number
In this example, we will pass Python complex number into the abs() function and it will return an absolute value.
Python
# A complex number
complex_number = (3 - 4j)
print('Absolute value or Magnitude of complex is:', abs(complex_number))
Output:
Absolute value or Magnitude of complex is: 5.0
Time-Distance calculation using Python abs() Function
In this example, the equation shows the relationship between speed, distance traveled, and time taken by an object. We know that speed, time, and distance are never negative. Hence we will use the abs() method to calculate the exact time, distance, and speed.
Formula used:
- Distance = Speed * Time
- Time = Distance / Speed
- Speed = Distance / Time
We declared 3 functions to calculate speed, distance, and time. Then passed the positive and negative integer and float point values to them using the Python abs() function. The abs() function will automatically convert the negative values to positive values, which will be used to calculate speed, distance, and time.
Python
# Function to calculate speed
def cal_speed(dist, time):
print(" Distance(km) :", dist)
print(" Time(hr) :", time)
return dist / time
# Function to calculate distance traveled
def cal_dis(speed, time):
print(" Time(hr) :", time)
print(" Speed(km / hr) :", speed)
return speed * time
# Function to calculate time taken
def cal_time(dist, speed):
print(" Distance(km) :", dist)
print(" Speed(km / hr) :", speed)
return dist / speed
# Driver Code
# Calling function cal_speed()
print(" The calculated Speed(km / hr) is :",
cal_speed(abs(45.9), abs(-2)))
print("")
# Calling function cal_dis()
print(" The calculated Distance(km) :",
cal_dis(abs(-62.9), abs(2.5)))
print("")
# Calling function cal_time()
print(" The calculated Time(hr) :",
cal_time(abs(48.0), abs(4.5)))
Output Distance(km) : 45.9
Time(hr) : 2
The calculated Speed(km / hr) is : 22.95
Time(hr) : 2.5
Speed(km / hr) : 62.9
The calculated Distance(km) : 157.25
Distance(km) : 48.0
Speed(km / hr) : 4.5
The calculated Time(hr) : 10.666666666666666
Similar Reads
Python Built in Functions Python is the most popular programming language created by Guido van Rossum in 1991. It is used for system scripting, software development, and web development (server-side). Web applications can be developed on a server using Python. Workflows can be made with Python and other technologies. Databas
6 min read
abs() in Python The Python abs() function return the absolute value. The absolute value of any number is always positive it removes the negative sign of a number in Python. Example:Input: -29Output: 29Python abs() Function SyntaxThe abs() function in Python has the following syntax:Syntax: abs(number)number: Intege
3 min read
Python - all() function The Python all() function returns true if all the elements of a given iterable (List, Dictionary, Tuple, set, etc.) are True otherwise it returns False. It also returns True if the iterable object is empty. Sometimes while working on some code if we want to ensure that user has not entered a False v
3 min read
Python any() function Python any() function returns True if any of the elements of a given iterable( List, Dictionary, Tuple, set, etc) are True else it returns False. Example Input: [True, False, False]Output: True Input: [False, False, False]Output: FalsePython any() Function Syntaxany() function in Python has the foll
5 min read
ascii() in Python Python ascii() function returns a string containing a printable representation of an object and escapes the non-ASCII characters in the string using \x, \u or \U escapes. It's a built-in function that takes one argument and returns a string that represents the object using only ASCII characters. Exa
3 min read
bin() in Python Python bin() function returns the binary string of a given integer. bin() function is used to convert integer to binary string. In this article, we will learn more about Python bin() function. Example In this example, we are using the bin() function to convert integer to binary string. Python3 x = b
2 min read
bool() in Python In Python, bool() is a built-in function that is used to convert a value to a Boolean (i.e., True or False). The Boolean data type represents truth values and is a fundamental concept in programming, often used in conditional statements, loops and logical operations.bool() function evaluates the tru
3 min read
Python bytes() method bytes() method in Python is used to create a sequence of bytes. In this article, we will check How bytes() methods works in Python. Pythona = "geeks" # UTF-8 encoding is used b = bytes(a, 'utf-8') print(b)Outputb'geeks' Table of Contentbytes() Method SyntaxUsing Custom EncodingConvert String to Byte
3 min read
chr() Function in Python chr() function returns a string representing a character whose Unicode code point is the integer specified. chr() Example: Python3 num = 97 print("ASCII Value of 97 is: ", chr(num)) OutputASCII Value of 97 is: a Python chr() Function Syntaxchr(num) Parametersnum: an Unicode code integerRet
3 min read
Python dict() Function dict() function in Python is a built-in constructor used to create dictionaries. A dictionary is a mutable, unordered collection of key-value pairs, where each key is unique. The dict() function provides a flexible way to initialize dictionaries from various data structures.Example:Pythond=dict(One
4 min read