import multiprocessing _d = {"a": []} d = mp.Manager().dict(_d) # USE: d["a"] += ["Whatever you want"] # DON'T use: d["a"].append("Whatever you want")