#python-is
Read more stories on Hashnode
Articles with this tag
Problem Faced a = 256 b = 256 print(a is b) # True But when we try this, a = 257 b = 257 print(a is b) # False Why this is strange behaviour...