嗨,我有一个非常快速的问题
for header in cookie_headers:
pairs = [pair.partition("=") for pair in header.split(';')]
cookie_name = pairs[0][0] # the key of the first key/value pairs
cookie_value = pairs[0][2] # the value of the first key/value pairs
cookie_parameters = {key.strip().lower():value.strip() for key,sep,value in pairs[1:]}
cookies.append((cookie_name, (cookie_value, cookie_parameters)))
return dict(cookies)
我有一些类似 cookie_parameters 的代码不适用于 python 2.6 我安装了 2.7 但是它在 python 2.6 中需要的库我太困惑了只需要学习如何在 2.6 中编写这个语法
cookie_parameters = {key.strip().lower():value.strip() for key,sep,value in pairs[1:]}