gpt4 book ai didi

python - 将文本文件的编码从 utf-8 转换为 python 中的 ansi 或 unicode

转载 作者:行者123 更新时间:2023-11-28 21:07:31 25 4
gpt4 key购买 nike

我有一个 utf-8 编码的文本文件。我想在 python 中自动将它的 unicode 更改为 ANSI 或 unicode。是否可以?我该怎么做?

最佳答案

试试这个

#read input file
with codecs.open('USERS.CSV', 'r', encoding = 'latin-1') as file:
lines = file.read()

#write output file
with codecs.open('1_UserPython.CSV', 'w', encoding = 'utf_8_sig') as file:
file.write(lines)

关于python - 将文本文件的编码从 utf-8 转换为 python 中的 ansi 或 unicode,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41320155/

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