Skip to content

Instantly share code, notes, and snippets.

@eclecticmiraclecat
Created May 31, 2020 10:56
Show Gist options
  • Save eclecticmiraclecat/898531d9003bd8f2173c00b5bdebdf89 to your computer and use it in GitHub Desktop.
Save eclecticmiraclecat/898531d9003bd8f2173c00b5bdebdf89 to your computer and use it in GitHub Desktop.
>>> class Foo:
... def __getattr__(self, name):
... setattr(self, name, 'N/A')
... return getattr(self, name)
...
>>> f = Foo()
>>> f.x
'N/A'
>>> f.__dict__
{'x': 'N/A'}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment