Skip to content

Instantly share code, notes, and snippets.

@jayd3e
Last active August 29, 2015 13:56
Show Gist options
  • Save jayd3e/8806809 to your computer and use it in GitHub Desktop.
Save jayd3e/8806809 to your computer and use it in GitHub Desktop.
class Classy(object):
def __init__(self):
self.i = 0
@property
def prop(self):
self.i += 1
return self.i
classy = Classy()
classy.prop
# 1
classy.prop
# 2
class.prop
# 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment