Bedenken Sie:
$ cat bla.py
u = unicode('d…')
s = u.encode('utf-8')
print s
$ python bla.py
File "bla.py", line 1
SyntaxError: Non-ASCII character '\xe2' in file bla.py on line 1, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details
Wie kann ich UTF-8-Strings im Quellcode deklarieren?
6 Stimmen
"Siehe python.org/peps/pep-0263.html für Details" scheint mir klar zu sein.