gpt4 book ai didi

python - 在 python 中保存文件时添加 BOM(unicode 签名)

转载 作者:IT老高 更新时间:2023-10-28 20:56:12 26 4
gpt4 key购买 nike

如何在 python 中保存文件时添加 BOM(unicode 签名):

file_old = open('old.txt', mode='r', encoding='utf-8')
file_new = open('new.txt', mode='w', encoding='utf-16-le')
file_new.write(file_old.read())

我需要将文件转换为 utf-16-le + BOM。现在脚本运行良好,只是没有 BOM。

最佳答案

直接写在文件开头:

file_new.write('\ufeff')

关于python - 在 python 中保存文件时添加 BOM(unicode 签名),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5202648/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com