python - TypeError: tryMsgcode() takes exactly 2 arguments (0 given)
問(wèn)題描述
# -*- coding: utf-8 -*-import urllib2import urllibimport httplibimport threadingimport random# lock = threading.Lock()def tryMsgcode(MsgCode): # print user,password global headers global outFile conn = httplib.HTTPConnection('localhost') if len(MsgCode) < 3: # 限制字典,排除字典中的無(wú)用數(shù)據(jù)return # 主動(dòng)退出線程 else:# lock.acquire() # 多線程操作文件,提前加鎖,用后釋放# line = inFile.readline()# lock.release()conn.request(method='GET', url='/test.aspx?UserName=test&Password=123456&MsgCode=%s&random=0.790281244798%s' % (MsgCode, random.randint(1111, 9999)))responseText = conn.getresponse().read().decode(’utf8’) # 網(wǎng)頁(yè)編碼# print responseText # 第一次可以打印看看是否解析if not responseText.find(u’3’) > 0: print ’Sueessed:’, ExCode outFile.write(’MsgCode:’ + MsgCode + ’n’)else: print ’Error:’ + MsgCode + ’n’ returnoutFile = open(’Msgcode-sussessed.txt’, ’w’)if __name__ == ’__main__’: tsk = [] # 創(chuàng)建線程池 with open(r’msg.dic’, ’r’) as MsgCodeDic: # 使用with as 來(lái)打開(kāi)文件,不需自己關(guān)閉文件,因?yàn)樗麜?huì)自己在合適的時(shí)候自已關(guān)閉(類(lèi)似C# 中的using(...){}接口) for Code in MsgCodeDic.readlines(): t = threading.Thread(target=tryMsgcode(Code), args=Code) t.daemon = False # 設(shè)置不進(jìn)行進(jìn)程守護(hù) tsk.append(t) # t.start() MsgCodeDic.seek(0)# 記住這里要將文件重新移到文件首,不然就會(huì)出現(xiàn)只執(zhí)行外層循環(huán)的第一條,因?yàn)閮?nèi)層在# 迭代之后(readlines()是迭代器的形式,迭代一次后文件指針就指到文件尾了,迭代器# 也是end了)第二次就沒(méi)有password 在 fPass中,也就是說(shuō) for password in fPass.readlines():# 為空,所以這里的內(nèi)層循環(huán)就不會(huì)被執(zhí)行了,因此也就是迭代器清零的問(wèn)題(C ++ itertor 常有)# join()無(wú)參數(shù)就是完全阻塞主線程,等待線程執(zhí)行完 有參數(shù)就是說(shuō),# 在主線程等待一秒后就不阻塞線程了,繼續(xù)執(zhí)行主線程,這里的意思是一秒鐘開(kāi)一個(gè)線程# 不能再thread start之前調(diào)用join(), 因?yàn)閖oin() 是線程運(yùn)行時(shí)調(diào)度 for t in tsk:t.start()t.join(1) print 'All thread OK,maybe not ' outFile.close()

問(wèn)題解答
回答1:提示說(shuō)tryMsgcode()方法接受2個(gè)參數(shù)但是你一個(gè)都沒(méi)傳
相關(guān)文章:
1. PHPExcel表格導(dǎo)入數(shù)據(jù)庫(kù)怎么導(dǎo)入2. 運(yùn)行python程序時(shí)出現(xiàn)“應(yīng)用程序發(fā)生異常”的內(nèi)存錯(cuò)誤?3. html - 網(wǎng)頁(yè)的a標(biāo)簽到底要不要寫(xiě)上域名?4. css - 移動(dòng)端 盒子內(nèi)加overflow-y:scroll后 字體會(huì)變大5. MySQL中無(wú)法修改字段名的疑問(wèn)6. html5 - 前端面試碰到了一個(gè)緩存數(shù)據(jù)的問(wèn)題,來(lái)論壇上請(qǐng)教一下7. macos - 無(wú)法source activate python278. python - sqlalchemy更新數(shù)據(jù)報(bào)錯(cuò)9. 我在導(dǎo)入模板資源時(shí)遇到無(wú)法顯示的問(wèn)題,請(qǐng)老師解答下10. javascript - 添加一個(gè)tr標(biāo)簽到table標(biāo)簽里,在控制臺(tái)顯示table標(biāo)簽時(shí),有2個(gè)子元素?我想要的是tr標(biāo)簽包含到table標(biāo)簽里面

網(wǎng)公網(wǎng)安備