Names in Python are references to boxes, not variables. The `is` operator does not compare identity of names, it compares identity of values: ```python >>> a = 1 >>> A = 1 >>> print(a is not A) False ```