gpt4 book ai didi

Python 的 .text : Couldn't get it to work

转载 作者:行者123 更新时间:2023-12-01 05:34:41 26 4
gpt4 key购买 nike

我一直在尝试在 Python 中使用 .text 来将 html 代码转换为可读文本来工作,但仍然没有成功。

假设我有以下代码:

import urllib

url = ['http://google.com','http://bing.com']

for i in url:
html = urllib.urlopen(i).read()
print html.encode('utf-8').text

一旦我删除最后一行中的 .text ,代码就可以工作,但我看到有人在教程中使用它,没有任何问题。知道为什么我不能让它工作吗?哈哈

非常感谢!

最佳答案

import urllib

url = ['http://google.com','http://bing.com']

for i in url:
html = urllib.urlopen(i).read()
print html

无需encodetext,只需打印read()后写入的html即可。我建议您使用 python-requests .

关于Python 的 .text : Couldn't get it to work,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19373597/

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