Skip to content

Instantly share code, notes, and snippets.

@highsmallxu
Created July 14, 2020 18:22
Show Gist options
  • Save highsmallxu/9a2680c38528f2c577766e06f5233c4d to your computer and use it in GitHub Desktop.
Save highsmallxu/9a2680c38528f2c577766e06f5233c4d to your computer and use it in GitHub Desktop.
print(Kid.__mro__)
# (<class '__main__.Kid'>, <class '__main__.Dad'>, <class '__main__.Mum'>, <class 'object'>)
kid = Kid()
print(kid.eye_color)
# blue
print(kid.city)
# Amsterdam
kid.swim()
# I can swim
kid.dance()
# I can dance
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment