mirror of
https://github.com/balkian/gists.git
synced 2024-12-04 06:02:28 +00:00
This commit is contained in:
parent
c777eeb985
commit
f223e35140
9
coding.py
Normal file
9
coding.py
Normal 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"
|
Loading…
Reference in New Issue
Block a user