如何在 Python 中读写 unicode(UTF-8)文件?
现在推荐使用 io 模块,且其与 Python 3 的 open 语法兼容:以下代码用于在 Python 中读写 unicode(UTF-8) 文件
示例
import io with io.open(filename,'r',encoding='utf8') as f: text = f.read() # process Unicode text with io.open(filename,'w',encoding='utf8') as f: f.write(text)
广告