a = abs(-1) return a #returns 1
Here is what the above code is Doing:
1. The function is called with the argument -1.
2. The function creates a variable a and assigns it the value of the absolute value of -1.
3. The function returns the value of a.
4. The function call evaluates to 1.