摘要: import urllib2,re#读取网页信息def getcontent(url): request=urllib2.Request(url) f=urllib2.urlopen(request) content= f.read() return content#使用re... 阅读全文
posted @ 2013-11-07 14:02 前行者2011 阅读(125) 评论(0) 推荐(0) 编辑