Refering to the following codes I found, there is nothing displayed in the
console, may I ask why?
def thrd(param): # the thread worker function
print "Received",para m
import thread
for i in range(5): # start five threads passing i to each one
thread.start_ne w_thread(thrd,( i,))
Thanks in advance
console, may I ask why?
def thrd(param): # the thread worker function
print "Received",para m
import thread
for i in range(5): # start five threads passing i to each one
thread.start_ne w_thread(thrd,( i,))
Thanks in advance
Comment