Python - Encapsulation and Data Protection
Find the error in this code related to encapsulation:
class Person:
def __init__(self, name):
self.__name = name
p = Person('Anna')
print(p.__name)