python字典键错误无法解决

我在一个巨大的链接列表中执行状态检查,我的代码如下:

link = 'http://xyz'
proxyDict = { "http" : "ip:80", "https" : "https://ip:443"}
r = requests.get(link, allow_redirects=False, verify=False)
http_status = r.status_code
print (r.headers)

# check the status and react accordingly

if http_status == 200 and r.headers['content-length'] == "0":
   print ('Link Alive - NO content'+';'+str(http_status)+';'+link, file = log)
elif http_status == 200 and "text/html" in r.headers['content-type']:
   print ('External- direct HTML link'+';'+str(http_status)+';'+link, file = log)  
elif http_status == 200 and "application" in r.headers['content-type']:
   print ('External- direct HTML link'+';'+str(http_status)+';'+link, file = log)

当我执行代码时,我收到以下错误:

    return self._store[key.lower()][1]
    KeyError: 'content-length'

标头输出如下:

CaseInsensitiveDict({'status': '200', path=/; HttpOnly, shpuvid=rBBcnFJUTliSHV+hA5lLAg==; expires=Thu, 08-Oct-15 18:26:32 GMT;'connection': 'keep-alive', 'cache-control': 'max-age=0, private, must-revalidate', 'date': 'Tue, 08 Oct 2013 18:26:32 GMT', 'content-type': 'text/html; charset=utf-8', 'x-rack-cache': 'miss'})

我知道错误的存在是因为标头输出没有键“content-length”,但是如果条件不满足则必须跳转到下一个不发生的elif条件,而是停止代码执行抛出上述错误.

有什么建议?可能是一个愚蠢的问题,但对初学者来说是一件好事.

最佳答案 不使用括号表示法,而是使用字典中的r.headers.get(‘content-length’),它不会引发键错误,只返回None.

很好,您可以使用任何一种表示法从字典中检索值.很多时候,您希望抛出关键错误,以免让问题被忽视.在这种情况下,看来dictionary.get()就是你想要的.

点赞