Skip to content

Instantly share code, notes, and snippets.

@avargas
Created October 22, 2012 02:38
Show Gist options
  • Save avargas/3929330 to your computer and use it in GitHub Desktop.
Save avargas/3929330 to your computer and use it in GitHub Desktop.
>>> a = None
>>> type(a)
<type 'NoneType'>
>>> a = 1
>>> type(a)
<type 'int'>
>>> a = "angelo"
>>> type(a)
<type 'str'>
>>> a = type
>>> type(a)
<type 'type'>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment