Overview: Identity operators in Python allow you to check whether two variables point to the same object in memory, not just whether their values are equal.
Python provides two identity operators:
x = 100
y = 100
print(x is y) # True (small integers are cached)
print(x == y) # True (values are equal)