Skip to content

Instantly share code, notes, and snippets.

@shomah4a
Created April 10, 2012 15:30
Show Gist options
  • Save shomah4a/2352146 to your computer and use it in GitHub Desktop.
Save shomah4a/2352146 to your computer and use it in GitHub Desktop.
zen of python classs and type
>>> isinstance(type, object)
True
>>> isinstance(object, type)
True
>>> type(object)
<type 'type'>
>>> type(type)
<type 'type'>
>>> issubclass(type, object)
True
>>> issubclass(object, type)
False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment