| type_ref | | ref_count | | value |
aa = 12 id(a) # return memory address obj the object the variable poits to
Variable equality shows if two variables point to the same object
a = [] b = a a is bb # True a = [] b = [] a is bb # False