#object-attributes

[ follow ]
Python
fromPythonmorsels
1 week ago

__dict__: where Python stores attributes

Python stores attributes for instances, classes, and modules in their __dict__ dictionaries, mapping attribute names to values.
[ Load more ]