Can we simulate private and protected access specifiers in python?
Name Mangling
eg:
__var=10
can simulate private but its viable to be accessed outside easily via the object.
object._className__var
So is there a way we could simulate or does python a solution directly which I am not aware of?