您好,登錄后才能下訂單哦!
這篇文章主要講解了python多線程實(shí)現(xiàn)同時(shí)執(zhí)行兩個(gè)while循環(huán)的方法,內(nèi)容清晰明了,對(duì)此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會(huì)有幫助。
如果想同時(shí)執(zhí)行兩個(gè)while True循環(huán),可以使用多線程threading來實(shí)現(xiàn)。
完整代碼
#coding=gbk from time import sleep, ctime import threading def muisc(func): while True: print 'Start playing: %s! %s' %(func,ctime()) sleep(2) def move(func): while True: print 'Start playing: %s! %s' %(func,ctime()) sleep(5) def player(name): r = name.split('.')[1] if r == 'mp3': muisc(name) else: if r == 'mp4': move(name) else: print 'error: The format is not recognized!' list = ['愛情買賣.mp3','阿凡達(dá).mp4'] threads = [] files = range(len(list)) #創(chuàng)建線程 for i in files: t = threading.Thread(target=player,args=(list[i],)) threads.append(t) if __name__ == '__main__': #啟動(dòng)線程 for i in files: threads[i].start() for i in files: threads[i].join() #主線程 print 'end:%s' %ctime()
效果:
補(bǔ)充知識(shí):python 如何在一個(gè)for循環(huán)中遍歷兩個(gè)列表
利用python自帶的zip函數(shù)可同時(shí)對(duì)兩個(gè)列表進(jìn)行遍歷,代碼如下:
>>> list1 = ['a', 'b', 'c', 'd'] >>> list2 = ['apple', 'boy', 'cat', 'dog'] >>> for x, y in zip(list1, list2): print(x, 'is', y) # 輸出 a is apple b is boy c is cat d is dog
看完上述內(nèi)容,是不是對(duì)python多線程實(shí)現(xiàn)同時(shí)執(zhí)行兩個(gè)while循環(huán)的方法有進(jìn)一步的了解,如果還想學(xué)習(xí)更多內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。