python多线程实现for循环_python多线程实现同时执行两个while循环的操作

通过导入threading模块,创建两个无限循环的线程,分别播放音乐和移动文件。代码示例展示了如何启动和管理这些线程,以及如何在for循环中遍历两个列表。
摘要由CSDN通过智能技术生成

如果想同时执行两个while True循环,可以使用多线程threading来实现。

完整代码

#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','阿凡达.mp4']

threads = []

files = range(len(list))

#创建线程

for i in files:

t = threading.Thread(target=player,args=(list[i],))

threads.append(t)

if __name__ == '__main__':

#启动线程

for i in files:

threads[i].start()

for i in files:

threads[i].join()

#主线程

print 'end:%s' %ctime()

效果:

6a7b1648d64285c6b337753a6b7966dc.png

补充知识:python 如何在一个for循环中遍历两个列表

利用python自带的zip函数可同时对两个列表进行遍历,代码如下:

>>> 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

以上这篇python多线程实现同时执行两个while循环的操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持聚米学院。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值