Skip to content

Instantly share code, notes, and snippets.

@SpikeXy
Last active October 2, 2017 01:48
Show Gist options
  • Save SpikeXy/dfd75fd04a308541e9493bfdfb6014be to your computer and use it in GitHub Desktop.
Save SpikeXy/dfd75fd04a308541e9493bfdfb6014be to your computer and use it in GitHub Desktop.
@Property #python
class Student(object):
@property
def birth(self):
return self._birth
@birth.setter
def birth(self, value):
self._birth = value
@property
def age(self):
return 2015 - self._birth
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment