Skip to content

Instantly share code, notes, and snippets.

@sloria
Last active August 13, 2019 13:58
Show Gist options
  • Save sloria/5895446 to your computer and use it in GitHub Desktop.
Save sloria/5895446 to your computer and use it in GitHub Desktop.
# Better
class Person:
def __init__(self, name, occupation):
self.name = name
self.occupation = occupation
self._relatives = None
@property
def relatives(self):
if self._relatives is None:
self._relatives = ... # Get all relatives
return self._relatives
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment