How to use private member in class with Python

1 Answer

0 votes
class Test:
    def __init__(self, value):
        self.__privatevalue = value

    __privatevalue = 0

o = Test(98)

# print(o.__privatevalue) # 'A' object has no attribute '__privatevalue'

print(o._Test__privatevalue)



'''
run:

98

'''

 



answered Nov 16, 2018 by avibootz
edited Oct 8, 2020 by avibootz

Related questions

...