我尝试过dir(),但命令只返回这样的消息:
<bound method HTTPResponse.begin of <http.client.HTTPResponse object at 0x00E9DEF0>>
我害怕我不知道如何解读。
免责声明:我根本没有使用过Python,所以这可能是一个非常愚蠢的问题。请温柔。
谢谢!
答案 0 :(得分:3)
方法,就像函数一样,必须后跟parens(()
),可选地包含参数,以便调用它们。
someobj.somemeth()
答案 1 :(得分:0)
您可以像这样逐行打印HTTPResponse对象的内容
# Get the object from a url
url = 'https://www.example.com'
response_object = urllib.request.urlopen(url)
# Print the contents line by line
for line in response_object:
print(line)