Comment utiliser la fonction ABS () avec un argument entier

my_number = 7

abs_value = abs(my_number)

print(abs_value)

#output 

#7
OHIOLee