num = 13
print( id(num) )
num = num + 3
print( id(num) )
num = num - 3
print( id(num) )
num = "Hello"
print( id(num) )
# The first and third print statements will return the same address as they contain the same variable. All other print statements will be different from each other. In python when value of a variable is changed it just changes its address and hence the first and third id(num) are same.