Id() method in Python Built in Function
id method in built in function returns the identity or the unique integer of an object.
Syntax:
Id(object)
Example-1:
x = ('apple', 'banana', 'cherry')
y = id(x)
print(y)
Output:

Example-2:
x = (56.9) y = id(x) print(y)
Output:

Example-3:
x = (68) y = id(x) print(y)
Output:
