Skip to content

Instantly share code, notes, and snippets.

@4e1e0603
Last active September 20, 2015 10:36
Show Gist options
  • Save 4e1e0603/0bfba2cd82cad0d16bc0 to your computer and use it in GitHub Desktop.
Save 4e1e0603/0bfba2cd82cad0d16bc0 to your computer and use it in GitHub Desktop.
class A(object):
def __init__(self):
self.__var = 1
def __private(self):
print("--private--")
a = A()
print(A.__dict__.keys())
a._A__private()
print(a._A__var)
a.test = 2
print(a.test)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment