gpt4 book ai didi

python - 如何打开包含 Unicode 字符的 html 文件?

转载 作者:IT老高 更新时间:2023-10-28 20:57:29 24 4
gpt4 key购买 nike

我有一个名为 test.html 的 html 文件,它只有一个字 בדיקה

我打开 test.html 并使用这段代码打印它的内容:

file = open("test.html", "r")
print file.read()

但它会打印 ??????,为什么会发生这种情况,我该如何解决?

顺便说一句。当我打开文本文件时效果很好。

编辑:我试过这个:

>>> import codecs
>>> f = codecs.open("test.html",'r')
>>> print f.read()
?????

最佳答案

import codecs
f=codecs.open("test.html", 'r')
print f.read()

试试这样的。

关于python - 如何打开包含 Unicode 字符的 html 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27243129/

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