2

我正在尝试将 unicode 字符串(阿拉伯语)写入 python 中的文件。

f = codecs.open('out', 'w', "utf-8")
f.write(str(comment)+u'\n')

所写的行显示了一些字符,例如:

\xef\xbb\xbf

我该如何解决这个问题?

4

1 回答 1

3

不要使用str(comment). 改用unicode(object[, encoding[, errors]])

于 2013-06-06T14:39:38.240 回答