Python - Encapsulation and Data Protection
What is the cause of the error in this code?
class DataHolder:
def __init__(self):
self.__info = 123
obj = DataHolder()
print(obj.__info)