我的服務器上有unichr()
問題。請看下面:python unichr問題
我的服務器上(Ubuntu的9.04):
>>> print unichr(255)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
UnicodeEncodeError: 'ascii' codec can't encode character u'\xff' in position 0: ordinal not in range(128)
在我的桌面(Ubuntu的9.10):
>>> print unichr(255)
ÿ
我是相當新的Python,所以我不知道如何解決這個問題。任何人都在意幫忙嗎?謝謝。
相關:http://stackoverflow.com/questions/2389410/python-string-decoding-issue – codeape 2010-04-06 09:31:05