Nov-24-2022, 04:01 AM
(This post was last modified: Nov-24-2022, 02:56 PM by deanhystad.)
Python doesn't have any kind of private or protected access for object attributes. Everything is public. Names that start with underscore are like a private attribute. It does not provide any real protection, just a convention warning the user that this is for internal use. It is not part of the api and may change without notice.