Skip to content

Instantly share code, notes, and snippets.

@taddeimania
Created January 26, 2015 17:31
Show Gist options
  • Save taddeimania/0b4a7116a469ce8fc76d to your computer and use it in GitHub Desktop.
Save taddeimania/0b4a7116a469ce8fc76d to your computer and use it in GitHub Desktop.
>>> print "{}"
{}
>>> print {}
{}
# C'MON!
>>> print ['{}']
['{}']
>>> print [{}]
[{}]
>>> print type('{}')
<type 'str'>
>>> print type({})
<type 'dict'>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment