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.

link|improve this question
I've run it through Python and it worked. Can you please provide more information about your setup? – malenkiy_scot Feb 12 at 15:59
hey, am so sorry but while running it inside the python IDE i was missing " import time" loll :) .. thanks – Shaimaa Albaset Feb 13 at 21:45
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.