Python - Encapsulation and Data Protection
What will be printed when the following code is executed?
class DataHolder:
def __init__(self):
self._secret = 42
obj = DataHolder()
print(obj._secret)