codecs可以代替传统文件读写时编码的转化问题。

使用代码为:

import codecs

with codecs.open(filename, 'a', 'utf-8') as fout:
    fout.write(something)