import urllib.request

html = urllib.request.urlopen('http://jshawl.com/python-playground/')
s = html.read
print(s)


这是我得到的错误:


    0x032B18D0 >>


如何解决此错误?我犯什么错误?

最佳答案

您看到的打印内容不是错误-您看到HTTPResponse实例方法字符串表示形式。要获取方法返回的内容,应调用它:

s = html.read()

关于python - Python3(Urllib)-<http.client.HTTPResponse对象的绑定(bind)方法HTTPResponse.read位于0x03281BD0 >>,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36515264/

10-12 22:41