I noticed that in python there are two similar looking methods for finding the absolute value of a number:
First
abs(-5)
Second
math.fabs() always returns float, while abs() may return integer.
math.fabs()
abs()