join([timeout])
If the optional argument timeout is None
(the default), the method blocks until the process whose join()
method is called terminates. If timeout is a positive number, it blocks at most timeout seconds.
A process can be joined many times.
A process cannot join itself because this would cause a deadlock. It is an error to attempt to join a process before it has been started.
Please login to continue.