#PythonFunFact
There is such thing as private access in Python classes. Everything is public. Private access is just a matter of convention (e.g. using '_').
Python trusts you that you are accessing "private" variables for a good reason. We're all "consenting adults" here.