Jak używać funkcji ABS () z argumentem całkowitym

my_number = 7

abs_value = abs(my_number)

print(abs_value)

#output 

#7
OHIOLee