Python - Encapsulation and Data Protection
What will be the output of this code?
class Test:
def __init__(self):
self.__value = 10
def change_value(self):
self.__value = 20
obj = Test()
obj.change_value()
print(obj._Test__value)