is there any function that stops the further execution of the code untill all threads come to complete
if there is give me a simple example
Here's something that might work well:[CODE=python]# start all of the threads
if theFirstThread. isAlive():
theFirstThread. join()
# repeat for each thread[/CODE]
Comment