How to create n number of threads

2011-06-28 Thread hisan
How to create n number thread in python. i want iterate over the for loop and create a thread for each iteration . sample code for i in range(o,50): i want to create 50 thread here which call the same function. how start and stop each thread after completion --

Re: How to create n number of threads

2011-06-28 Thread Ian Kelly
On Tue, Jun 28, 2011 at 1:33 PM, hisan santosh.s...@gmail.com wrote: How to create n number thread in python. i want iterate over the for loop and create a thread for each iteration . sample code  for i in range(o,50):  i want to create 50 thread here which call the same function. how start