Skip to content

Instantly share code, notes, and snippets.

@dboyliao
Last active December 2, 2015 17:18
Show Gist options
  • Save dboyliao/b62db2b532d89014d0d6 to your computer and use it in GitHub Desktop.
Save dboyliao/b62db2b532d89014d0d6 to your computer and use it in GitHub Desktop.
class A:
def __init__(self):
self.a = 1
@property
def a(self):
return 2
a = A()
a.a
# >>> 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment