Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将 unicode 字符串(阿拉伯语)写入 python 中的文件。
f = codecs.open('out', 'w', "utf-8") f.write(str(comment)+u'\n')
所写的行显示了一些字符,例如:
\xef\xbb\xbf
我该如何解决这个问题?
不要使用str(comment). 改用unicode(object[, encoding[, errors]])。
str(comment)