Python - Encapsulation and Data Protection
Identify the problem in this code:
class Test:
def __init__(self):
self._value = 100
def print_value(self):
print(self.value)
t = Test()
t.print_value()