📅 2009-Sep-29 ⬩ ✍️ Ashwin Nanjappa ⬩ 🏷️ identity, objects, python ⬩ 📚 Archive
# "is" and "not is" operators check the object identity a = 5 b = 5 id(a) # 6701288 id(b) # 6701288 a is b # True c = 4 a is c # False a is not c # True