gpt4 book ai didi

python - 在python中打开带有重音符号的文本文件

转载 作者:行者123 更新时间:2023-12-04 23:48:54 25 4
gpt4 key购买 nike

我尝试使用 Python 2.7 打开法语文本文件。我使用了命令

f=open('textfr','r')

但是当我使用
f.read()

我丢失了重音字符:我得到 u"J'\xc3\xa9tais \xc3\xa0巴黎而不是 J'étais à巴黎等。

在 linux 终端时,我这样做
file -i textfr 

我得到
charset=utf-8

所以我不明白...

最佳答案

您需要指定字符集。

f = io.open('textfr', 'r', encoding='utf-8')

关于python - 在python中打开带有重音符号的文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27592240/

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