1
0
mirror of https://github.com/balkian/gists.git synced 2024-12-03 13:52:28 +00:00
This commit is contained in:
J. Fernando Sánchez 2015-02-25 12:46:09 -08:00
parent c777eeb985
commit f223e35140

9
coding.py Normal file
View File

@ -0,0 +1,9 @@
a = u"codificación"
print a # u"codificación"
print type(a) # <type 'unicode'>
b = a.encode("utf-8")
print b # codificación # But it depends on your terminal settings
print type(b) # <type 'str'>
c = b.decode("utf-8")
print type(c) # <type 'unicode'>
print c # u"codificación"