Skip to content

Instantly share code, notes, and snippets.

@vipul-sharma20
Last active March 25, 2016 16:27
Show Gist options
  • Select an option

  • Save vipul-sharma20/9400f9b04ca5a8c4e43c to your computer and use it in GitHub Desktop.

Select an option

Save vipul-sharma20/9400f9b04ca5a8c4e43c to your computer and use it in GitHub Desktop.
Objects everywhere
>>> a = 10
>>> a.__class__
<type 'int'>
>>>
>>>
>>> '10'.__class__
<type 'str'>
>>>
>>>
>>>True.__class__
<type 'bool'>
>>>
>>>
>>>def batman():
... pass
...
>>> batman.__class__
<type 'function'>
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment