如何在 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)
广告