Created
January 26, 2015 17:31
-
-
Save taddeimania/0b4a7116a469ce8fc76d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> 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