我开始在 python 中学习多处理,但已经到了我的代码挂起的地步。它只是使用多线程计算 1 000 000 阶乘。
import multiprocessing
def part(n):
ret = 1
n_max = n + 9999
while n <= n_max:
ret *= n
n += 1
print "Part "+ str(n-1) + " complete"
return ret
def buildlist(n_max):
n = 1
L = []
while n <= n_max:
L.append(n)
n += 10000
return L
final = 1
ne = 0
if __name__ == '__main__':
pool = multiprocessing.Pool()
results = [pool.apply_async(part, (x,)) for x in buildlist(1000000)]
for r in results:
x = r.get()
final *= x
ne+= 1
print ne
print final
我已经包含了一些打印函数来尝试诊断代码挂起的位置,它会按预期打印部分函数中包含的字符串 100 次。“print ne”也可以工作 100 次。
问题是 final 不会打印,并且代码没有完成。
我该如何解决这个问题?
编辑:另外,由于这被否决了,有人可以解释我做错了什么/为什么我被否决了吗?