Skip to content

Instantly share code, notes, and snippets.

@bendavis78
Created September 15, 2018 21:22
Show Gist options
  • Save bendavis78/ef813f596436ca0812c19f1c19a301e9 to your computer and use it in GitHub Desktop.
Save bendavis78/ef813f596436ca0812c19f1c19a301e9 to your computer and use it in GitHub Desktop.
>>> class Person:
... def __init__(self, first_name, last_name):
... self.first_name = first_name
... self.last_name = last_name
...
... @property
... def full_name(self):
... return self.first_name + ' ' + self.last_name
...
>>> me = Person('Ben', 'Davis')
>>> me.full_name
'Ben Davis'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment