python3 以utf-8编码写文件时间:2021-08-26 10:27:28 原来的 save = open('1.txt', 'w', 'utf8') 用下面的 save = codecs.open('1.txt', 'w', 'utf8')