from itertools import product
f = open('filename.txt', 'a')
def worker(i, j):
print i,j
f.write("%s\t%s\n"%(i,j))
return
def main():
a_list = ['1', '2', '3', '4', '5'] #5 item
b_list = ['6', '7', '8'] #3 item
# Total 5*3=15 combinations
from multiprocessing import Pool
pool = Pool(processes=4)
results = [pool.apply_async(worker, args=(i, j)) for i, j in product(a_list, b_list)]
output = [p.get() for p in results]
main()
f.close()
this is the code I'm trying to run and store result in a txt file but I'm unable to findout why this isn't writing, although its printing in terminal. any help would be appreciated.