About
Kodeclik is an online coding academy for kids and teens to learn real world programming. Kids are introduced to coding in a fun and exciting way and are challeged to higher levels with engaging, high quality content.
Popular Classes
Scratch Coding
Minecraft Coding
TinkerCAD
Roblox Studio
Python for Kids
Javascript for Kids
Pre-Algebra
Geometry for Kids
Copyright @ Kodeclik 2025. All rights reserved.
The Python abs() function returns the absolute value of a number. It works with integers, floating-point numbers, and complex numbers. Here are several examples to illustrate its usage:
The abs() function can be used to find the absolute value of positive and negative integers.
In this code, we apply abs() to both a positive and negative integer. For the positive number, the function returns the same value, while for the negative number, it returns its positive counterpart.
The output will be:
The abs() function also works with floating-point numbers, maintaining their decimal precision.
This example demonstrates that abs() preserves the decimal places of floating-point numbers while returning their absolute values.
The output will be:
For complex numbers, abs() returns the magnitude of the number, calculated using the Pythagorean theorem.
In this case, abs() calculates the magnitude of the complex number using the formula √(a² + b²), where a is the real part and b is the imaginary part.
The output will be:
The abs() function can be useful in various calculations, such as finding the difference between two numbers regardless of their order.
This example shows how abs() can be used to find the absolute difference between two numbers, which is useful when you're interested in the magnitude of the difference rather than which number is larger.
In Python, binary numbers are prefixed with '0b'. The abs() function works directly with these binary literals.
In this example, we're using the '0b' prefix to denote binary literals. Python interprets these as integers, so we can apply abs() directly without any conversion.
The output will be:
For octal numbers, we use the '0o' prefix to denote an octal literal in Python.
This code demonstrates using abs() with an octal number. Python automatically converts the octal to decimal before applying abs().
The output is:
Hexadecimal numbers in Python are prefixed with '0x'.
Here, we take the absolute value of a negative hexadecimal number. Python converts it to decimal internally before applying abs().
These examples demonstrate that regardless of the base in which a number is represented, Python's abs() function always operates on the decimal (base 10) equivalent of the number. For non-decimal bases, Python first converts the number to its decimal representation before applying the abs() function.
In addition to the abs() function, there is a function called fabs(). They are both used to calculate absolute values, but they have some key differences.
abs() is a built-in Python function, so it doesn't require importing any module. It works with integers, floating-point numbers, and complex numbers, as we have seen above.
fabs() on the other hand is part of the math module, so you need to import it using “from math import fabs”. It only works with real numbers (integers and floats), not complex numbers. Further,this function always returns a float, even if the input is an integer.
In most cases, abs() is more versatile and commonly used. However, if you're working exclusively with real numbers and need the best performance, math.fabs() might be preferable.
Thus the abs() function in Python is a very effective one, handling different numeric types and providing a simple way to obtain absolute values or magnitudes in various scenarios.
Want to learn Python with us? Sign up for 1:1 or small group classes.
positive_num = 42
negative_num = -17
print("Absolute value of", positive_num, "is:", abs(positive_num))
print("Absolute value of", negative_num, "is:", abs(negative_num))
Absolute value of 42 is: 42
Absolute value of -17 is: 17
positive_float = 3.14
negative_float = -0.001
print("Absolute value of", positive_float, "is:", abs(positive_float))
print("Absolute value of", negative_float, "is:", abs(negative_float))
Absolute value of 3.14 is: 3.14
Absolute value of -0.001 is: 0.001
complex_num = 3 + 4j
magnitude = abs(complex_num)
print("Magnitude of", complex_num, "is:", magnitude)
Magnitude of (3+4j) is: 5.0
num1 = 10
num2 = 25
difference = abs(num1 - num2)
print("The absolute difference between", num1, "and", num2, "is:", difference)
The absolute difference between 10 and 25 is: 15
# Positive binary number
positive_binary = 0b1010 # Binary representation of 10
abs_positive = abs(positive_binary)
print(f"Absolute value of binary 0b1010 is: {abs_positive}")
# Negative binary number
negative_binary = -0b1010 # Binary representation of -10
abs_negative = abs(negative_binary)
print(f"Absolute value of binary -0b1010 is: {abs_negative}")
Absolute value of binary 0b1010 is: 10
Absolute value of binary -0b1010 is: 10
octal_number = 0o17 # Octal representation of 15
absolute_value = abs(octal_number)
print(f"Absolute value of octal 0o17 is: {absolute_value}")
Absolute value of octal 0o17 is: 15
hex_number = 0xFF # Hexadecimal representation of 255
negative_hex = -hex_number
absolute_value = abs(negative_hex)
print(f"Absolute value of hexadecimal -0xFF is: {absolute_value}")
Absolute value of hexadecimal -0xFF is: 255