Python - Encapsulation and Data Protection
What will be the output of this code?
class MyClass:
def __init__(self):
self._value = 10
obj = MyClass()
print(obj._value)