python 之html的headers提取操作

时间:2024-11-29 22:35:01
# -*- coding: cp936 -*-
#python 27
#xiaodeng
#python 之html的headers提取操作
# import urllib,urllib2 html=urllib.urlopen('http://i.cnblogs.com/')
#print html.headers
html=html.headers
print html
print '--'*25
for item,v in html.items():
print item,':',v