What about?
for job in jobs:
job.join()
This blocks until the first process finishes, then the next one and so on. See more about join()
What about?
for job in jobs:
job.join()
This blocks until the first process finishes, then the next one and so on. See more about join()