import time
import thread
def myfunc(string,sleeptime):
while 1:
print string
time.sleep(sleeptime)
thread.start_new_thread(myfunc,("Thread No:1",2))
This is a simple example of using sleep() command in a thread in Python, but when I run it I got a run-time error message : This application has requested the run time to terminate it in an unusual way. So please any help ? I don't know what the reason for this error is.