我真的很难弄清楚如何打印到列表中。我想打印我指定的 URL 的服务器响应代码。您知道我将如何更改代码以将输出打印到列表中吗?如果没有,你知道我在哪里可以找到答案吗?我已经找了几个星期了。
这是代码:
import urllib2
for url in ["http://stackoverflow.com/", "http://stackoverflow.com/questions/"]:
try:
connection = urllib2.urlopen(url)
print connection.getcode()
connection.close()
except urllib2.HTTPError, e:
print e.getcode()
印刷:
200
200
我想要:
[200, 200]