python3 以utf-8编码写文件时间:2023-01-05 10:05:21 原来的 save = open('1.txt', 'w', 'utf8') 用下面的 save = codecs.open('1.txt', 'w', 'utf8')