Posted in Python onJuly 08, 2015
本文实例讲述了python友情链接检查方法。分享给大家供大家参考。具体实现方法如下:
# _*_ coding:utf-8 _*_ #xiaohei.python.seo.call.me:) #win+python2.7.x import urllib2,re for i, line in enumerate(open('link.txt')): url_ = line.strip() print i,line html = urllib2.urlopen(url_).read() cou = html.count('360buy.com' or 'jd.com') if cou >= 0: print '有' else: print '没有' print "\n\n"
希望本文所述对大家的Python程序设计有所帮助。
python友情链接检查方法
- Author -
光索与诺声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@