Python - Encapsulation and Data Protection
Identify the error in this code snippet:
class Container:
def __init__(self):
self._items = [1, 2, 3]
def get_items(self):
return self.__items
c = Container()
print(c.get_items())