>>> import multiprocessing >>> def myfunc(): ... pass ... >>> p1 = multiprocessing.Process(name='listen', target=myfunc) >>> p1.start() >>>