Skip to content

Instantly share code, notes, and snippets.

@eclecticmiraclecat
Created May 30, 2020 08:54
Show Gist options
  • Save eclecticmiraclecat/5616c0844e680cfed69153b3e4f14907 to your computer and use it in GitHub Desktop.
Save eclecticmiraclecat/5616c0844e680cfed69153b3e4f14907 to your computer and use it in GitHub Desktop.
>>> class Foo:
... def hello(self):
... print(self.__class__.__name__)
...
>>> class Bar(Foo):
... pass
...
>>> b = Bar()
>>> b.hello()
Bar
>>> f = Foo()
>>> f.hello()
Foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment