Created
September 15, 2018 21:22
-
-
Save bendavis78/ef813f596436ca0812c19f1c19a301e9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> 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