a = abs(-1) return a #returns 1
>>> n = -42 >>> -n # if you know n is negative 42 >>> abs(n) # for any n 42 >>> abs(-5.05) 5.05
a = -abs(a)