def _id(object):
    return id(object)

print(_id(2))
print(_id("Ala ma kotA"))
print(_id([1, 3, 10]))