>>> a = 500 >>> b = 500 >>> a is b False >>> c = 200 >>> d = 200 >>> c is d True
“Can you surmise why this inconsistency happens?”