I want to create 3 threads in python ,I am using python class thread library, Is this the below is the right way to create threads in while loop? it may create problems?
while (count <= 3):
     try:
        thread = CreateThread(count, args)
        thread.start()
     except:
        logger.error("Error: unable to start thread ")
Any other right ways?
 
    