Python - Encapsulation and Data Protection
Identify the problem in this code:
class Car():
def __init__(self, model):
self.__model = model
c = Car('Tesla')
print(c.__model)