In the code above, ID is a public property, but __salary is a private property, so it cannot be accessed outside the class.
When it is tried to be accessed outside the class, the following error is generated:
'Employee' object has no attribute '__salary'
To ensure that no one from the outside knows about this private property, the error does not reveal its identity.