问题 I'm trying to learn the basics of multi-processing in python, and found the following example online which I wanted to practice with. import concurrent.futures import time def do_something(seconds): print(f' Sleeping {seconds} seconds') time.sleep(seconds) return f'Done Sleeping {seconds}' with concurrent.futures.ProcessPoolExecutor() as executor: f1 = executor.submit(do_something, 1) print(f1.result()) Fairly simple, I know. However, for some reason when I try and run this, I get the