这是一些读取文件并将每一行相加的示例代码。它应该将0-20的所有数字相加。但是,我总是得到0
.
我可以看到中间计算是成功的,那为什么是最终结果0
呢?
有一个更好的方法吗?我正在尝试对更大、更复杂的输入文件进行更多计算,并随时存储一些统计数据。
import multiprocessing
import StringIO
class Total():
def __init__(self):
self.total = 0
def add(self, number):
self.total += int(number)
def __str__(self):
return str(self.total)
total = Total()
def f(input):
total.add(input)
# Create mock file
mock_file = StringIO.StringIO()
for i in range(20):
mock_file.write("{}\n".format(i))
mock_file.seek(0)
# Compute
pool = multiprocessing.Pool(processes=4)
pool.map(f, mock_file)
print total
# Cleanup
mock_file.close()