1
0
mirror of https://github.com/balkian/gists.git synced 2024-11-01 08:01:44 +00:00
gists/repos/6b6906b97267a0c5ac52/coding.py
J. Fernando Sánchez 0c1d679eb2 Add 'repos/6b6906b97267a0c5ac52/' from commit 'f223e351402a52e6480d962ed72b31afa453b683'
git-subtree-dir: repos/6b6906b97267a0c5ac52
git-subtree-mainline: 73c547ec0c
git-subtree-split: f223e35140
2021-10-30 15:13:37 +02:00

9 lines
280 B
Python

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"