Languages
[Edit]
EN

Python - abs() method example

0 points
Created by:
Haris65
536

The abs() function returns the absolute value of a number. 

The absolute value of the number x denoted |x|, is the non-negative value of x without regard to its sign.

Popular usage examples:

print(abs(2))     # 2
print(abs(-2))    # 2

print(abs(2.54))  # 2.54
print(abs(-2.54)) # 2.54

print(abs(0))     # 0

print(abs(3 + 5)) # 8
print(abs(3 - 5)) # 2

1. Documentation

Syntax
abs(number)
Parametersnumber - number whose absolute value is to be returned
ResultThe absolute value calculated from the number.
Description

abs() is a method that takes only one parameter and returns an absolute number parameter value. The absolute value of the number x denoted |x|, is the non-negative value of x without regard to its sign.

2. abs() custom implementation

def absoluteValue(x):
    if x < 0:
        return -x
    return x


print(absoluteValue(2))     # 2
print(absoluteValue(-2))    # 2
print(absoluteValue(0))     # 0

References

  1. Absolute value - Wikipedia
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Cross technology - Math.abs()

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join