In python when we are assigning the same integer to two different variables, then why I am getting error number greater than 256.
Why This is True -
a = 256
b = 256
a is b
Why This is False -
a = 300
b = 300
a is b
In python when we are assigning the same integer to two different variables, then why I am getting error number greater than 256.
Why This is True -
a = 256
b = 256
a is b
Why This is False -
a = 300
b = 300
a is b