Skip to content

Instantly share code, notes, and snippets.

@bendavis78
Last active September 15, 2018 21:18
Show Gist options
  • Save bendavis78/133cb5d5a69290b95f0314c192555ab9 to your computer and use it in GitHub Desktop.
Save bendavis78/133cb5d5a69290b95f0314c192555ab9 to your computer and use it in GitHub Desktop.
Python @Property decorator example
>>> class Person:
... def __init__(self, first_name, last_name):
... self.first_name = first_name
... self.last_name = last_name
...
... def get_full_name(self):
... return self.first_name + ' ' + self.last_name
...
>>> me = Person('Ben', 'Davis')
>>> me.get_full_name()
'Ben Davis'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment