+ 5
In python everything is an object. And all these objects do have an identity number, which can be printed or assinged to a variable by using id(<name of object>).
a=44
print(id(a))
19346680 # this number can be different from the number on an other devices



