Created
April 25, 2016 17:29
-
-
Save schmiddy/9a28248f4c1c4076dd11759e0d96f893 to your computer and use it in GitHub Desktop.
This file contains 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
from __future__ import unicode_literals | |
UNADORNED = 'abc' | |
UNICODE_STR = u'abc' | |
BYTE_STRING = b'abc' | |
print "Type of UNADORNED: %s" % type(UNADORNED) | |
print "Type of UNICODE_STR: %s" % type(UNICODE_STR) | |
print "Type of BYTE_STRING: %s" % type(BYTE_STRING) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment