Python Tip #86 (of 365):
Acknowledge that containment is (sort of) a lie.
Data structures in Python don't contain data...
Well, at least data structures don't contain objects.
Variables don't contain objects: they just point to them.
Likewise, data structures, and all other objects ALSO don't contain objects.
Data structures only POINT to objects.
๐งต (1/2)