Como usar o função abs () com um argumento inteiro

my_number = 7

abs_value = abs(my_number)

print(abs_value)

#output 

#7
OHIOLee