蟒蛇 documentation 示例格式为
with Pool() as p: p.map(do)
但是我看到很多人使用下面的格式。
p = Pool() p.map(do) p.close() p.join()
哪个更可取?