Python - Encapsulation and Data Protection
Identify the issue in this code snippet:
class Example:
def __init__(self):
__value = 50
ex = Example()
print(ex.__value)