本文介绍了Python3(Urllib)-<0x03281BD0处<http.client.HTTPResponse对象>的绑定方法HTTPResponse.read的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
import urllib.request
html = urllib.request.urlopen('http://jshawl.com/python-playground/')
s = html.read
print(s)
这是我得到的错误:
>
我该如何解决这个错误?我犯了什么错误?
How do I fix this error? What mistake am I making?
推荐答案
您看到的不是错误 - 您看到的是 HTTPResponse
实例方法字符串表示.要获取方法返回的内容,您应该调用它:
What you see printed is not an error - you see the HTTPResponse
instance method string representation. To get what a method returns, you should call it:
s = html.read()
这篇关于Python3(Urllib)-<0x03281BD0处<http.client.HTTPResponse对象>的绑定方法HTTPResponse.read的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!