在开发/本地计算机上运行的Python代码,但在安装到Appengine后失败:
我文件中的第一行:
# -*- coding: utf8 -*-O
代码后面的行:
s1 = u'Ismerőseid'
logging.info (s1)
s2 = s1 + u':' + s1
logging.info (s2)
logging.info ("%s,%s", s1, s2)
在Dev(localhost)中:
INFO 2012-12-18 04:01:17,926 AppRun.py:662] Ismerőseid,
INFO 2012-12-18 04:01:17,926 AppRun.py:664] Ismerőseid:Ismerőseid
INFO 2012-12-18 04:01:17,926 AppRun.py:665] Ismerőseid,Ismerőseid. Ó,
安装/运行后在App Engine上:
I 2012-12-21 06:52:07.730
É, Á, Ö, Ü. Ó,
E 2012-12-21 06:52:07.736
Traceback (most recent call last):
File "....", line 672, in xxxx
s3 = s1 + u':' + s1
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 5: ordinal not in range(128)
我已尝试过各种编码/解码/等组合。我也在粘贴的字符串'Ismerőseid'上有chardet,它给了我{'confidence': 0.7402600692642154, 'encoding': 'ISO-8859-2'}
非常感谢任何帮助!
答案 0 :(得分:5)
将这3行放在Python 27代码的顶部以使用unicode:
#!/usr/bin/python
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
# And this code will not give you any problems
s1 = 'É, Á, Ö, Ü. Ó,'
logging.info (s1)
s2 = s1 + ':' + s1
logging.info ("%s,%s", s1, s2)
永远不要用户str()。只有你真的需要!
阅读Nick Johnson的this blogpost。这是在Python 27之前。他没有使用from __future__ import unicode_literals
,这使得使用Python的unicode变得如此简单。