What is abs() function?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

What is abs() function??

N how to understand return abs(n-50)

11th May 2021, 8:44 AM
Disha Jain
13 Answers
+ 6
abs is short for absolute value. It returns the absolute value of the number passed to it. If the input is positive, the same value is returned. If the input is negative, the sign is removed and resulting positive value returned. Here is official documentation: https://docs.python.org/3/library/functions.html#abs
11th May 2021, 8:51 AM
Josh Greig
Josh Greig - avatar
+ 4
The abs() function returns the absolute value of a number. Absolute value means the magnitude of the number without it's sign. For example, >> print(abs(-50)) 50 >> print(abs(50)) 50 If the number is negative, it changes the sign of the number and returns it. If the number is positive, it returns the number.
11th May 2021, 10:22 AM
MrMysterious5
+ 2
Atul In short it flip positive to.negative when negative value is entered and vice versa. This was the stmt given by you right? See, you're saying that it flips values from positive to negative and negative to positive, which means, for ex:- abs(50) results in - 50 according to your stmt, which is wrong.. abs() always returns a +ve value irrespective of the sign
12th May 2021, 6:35 AM
sarada lakshmi
sarada lakshmi - avatar
+ 1
Hi! Mathematically abs() = x if x >= 0 and -x if x < 0. So the result allways becomes >= 0. So in your case: If n >= 50 the result becomes n-50; otherwise it becomes -(n-50) which allways becomes >0. Example: n = 40 => -(n - 50) = - (40 - 50) = - (-10) = 10
11th May 2021, 8:51 AM
Per Bratthammar
Per Bratthammar - avatar
+ 1
sarada lakshmi My apologizes for the mistake. I will not repeat it again 😞
12th May 2021, 6:45 AM
Atul [Inactive]
0
It's returns the absolute value of the given number. Absolute value of a number is the value without considering its sign. For ex:- abs(-n) results in n abs(n) results in n as well.
11th May 2021, 8:53 AM
sarada lakshmi
sarada lakshmi - avatar
0
So what is n-50 here....let's suppose n is parament and then what is abs(n-50)??
11th May 2021, 8:55 AM
Disha Jain
0
Then the result depends on the value of 'n' For ex:-, Let's suppose, n = 10 abs(n-50) => abs(10-50) => abs(-40) = 40 Now,lets suppose n = 60 abs(n-50) => abs(60-50) => abs(10) =10
11th May 2021, 8:58 AM
sarada lakshmi
sarada lakshmi - avatar
0
Atul Hope you got it now!!
12th May 2021, 6:39 AM
sarada lakshmi
sarada lakshmi - avatar
0
sarada lakshmi thank you. Hakuna Matata
12th May 2021, 6:53 AM
Atul [Inactive]
0
It is absolute function. You can convert negative integer to positive integer. Major problems are there on SPOJ you can see there too.
12th May 2021, 5:46 PM
Vishal Pandey
0
The abs() function in Python is a built-in function that returns the absolute value of a number. In other words, it returns the positive magnitude of a given numeric value, regardless of its sign. For example: abs(5) returns 5 because the absolute value of 5 is 5. abs(-7) returns 7 because the absolute value of -7 is 7. The abs() function is commonly used when you need to ensure that a value is positive or when you want to calculate the distance between two points. To learn more about Python and explore the best Python tutorials, I recommend visiting https://pythondex.com.
5th Jul 2023, 4:10 AM
Jarvis Silva
Jarvis Silva - avatar
- 1
No worries... Mistakes are common.. We have to learn from them. 👍
12th May 2021, 6:46 AM
sarada lakshmi
sarada lakshmi - avatar