Last active
September 15, 2018 21:18
-
-
Save bendavis78/133cb5d5a69290b95f0314c192555ab9 to your computer and use it in GitHub Desktop.
Python @Property decorator example
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 | |
... | |
... 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