Cómo usar la función ABS () con un argumento entero

my_number = 7

abs_value = abs(my_number)

print(abs_value)

#output 

#7
OHIOLee