响应= request.urlopen(url)不起作用

时间:2018-10-18 09:39:37

标签: python python-3.x urllib

我已经尝试过,但这总是错误的。 有解决方案吗?所以这是我正在使用的代码:

from urllib import request

url = "http://www.gutenberg.org/files/2554/2554.txt"

response = request.urlopen(url)

raw = response.read().decode('utf8')

type(raw)

this is an error that happened** **

1 个答案:

答案 0 :(得分:0)

URL http://www.gutenberg.org/files/2554/2554.txt不存在。只需尝试将URL粘贴到浏览器中即可。

尝试使用有效的网址,您的代码有效!