复制代码 代码如下:import time,datetime import urllib2 def chk_qq(qqnum): chkurl = ‘http://wpa.qq.com/pa?p=1:’+`qqnum`+’:1′ a = urllib2.urlopen(chkurl) length=a.headers.get(“content-length”) a.close() print datetime.datetime.now() if length==’2329′: return ‘O
1