PRIVATE class methods and class attributes in Python EXIST

Some devs, especially those living under a rock, yap about Python lacking a built-in hiding mechanism for its classes.

Others suggest using a measly underscore, claiming it won't hide jack. It's like a secret handshake among devs. 

I say the first idea is spot-on, the second is like trying to convince folks a carrot is an apple – good luck with that. 

The way of true hiding:



Those attributes and methods are like secrets locked away – only the class itself gets the VIP access. You can't access them from the object of MySecrectClass as well as the child classes. They are intended for use exclusively inside the class.