Python - Encapsulation and Data Protection
Identify the error in this code snippet:
class Data:
def __init__(self):
self.__info = 42
def print_info(self):
print(self._Data__info)
obj = Data()
print(obj.__info)