Concept Flow - Private attributes
Create object
Set private attribute with __
Access private attribute inside class
Try to access private attribute outside class
Error or no direct access
Use name mangling to access if needed
This flow shows how private attributes are set and accessed inside a class, and how direct access outside is blocked but can be done with name mangling.