from multiprocessing import Process a=[] def one(): for i in range(3): a.append(i) def main(): p1=Process(target=one) p1.start() if __name__==