如何在与线程并行的for循环中运行项目列表

时间:2015-01-08 10:11:03

标签: python multithreading

我目前有一个项目列表,我希望使用线程并行执行,我目前使用多处理方法与pool.map函数并行运行项目列表,但我想用基本线程方法测试在python中。我的代码看起来像这样

     A=['Bounce.mo','Hello.mo','Circle.mo']
     from multiprocessing import Pool
     from multiprocessing.dummy import Pool as ThreadPool 
     pool = ThreadPool()
     pool.map(parallel,A)

如何并行运行线程以通过for循环迭代列表中的项目?,如下所示,

     A=['Bounce.mo','Hello.mo','Circle.mo']
     for z in xrange(len(A)):
        # run the threads in parallel 

0 个答案:

没有答案