标签:create strong close 转换 str 蓝色 格式转换 utf-8 红色
def create_file(tempDic):
"""生成文件 可将中文转码"""
file_name = "rule.yml"
file = open(file_name, "w",encoding=‘utf-8‘)
yaml.dump(tempDic, file, Dumper=yaml.RoundTripDumper,allow_unicode=True)
file.close()
其中蓝色处添加,可以将输出文件中的中文正常显示出来
红色处 可以将yaml格式转换正确
python中使用rumel.yaml写入文件时,中文不乱码的方式以及转换后格式正确
标签:create strong close 转换 str 蓝色 格式转换 utf-8 红色
原文地址:https://www.cnblogs.com/yiyi8/p/12557888.html