Junior — Senior
Verification of link identity for large numbers
livecode
Task condition
It is necessary to find out whether two variables point to the same object in memory using the is operator.
x, y = 100**100, 100**100
print(x is y)
livecode
Task condition
It is necessary to find out whether two variables point to the same object in memory using the is operator.
x, y = 100**100, 100**100
print(x is y)