On May 20, 8:19 am, "Chuckk Hubbard" <[EMAIL PROTECTED]>
wrote:
> #!/usr/bin/python
>
> #why doesn't this run both threads simultaneously?
> #Thanks for any help.
> #Chuckk
>
> import threading
> import time
>
> def printesc(thrd):
>     for i in range(10):
>         time.sleep(1)
>         print thrd, i
>
> def master():
>     thd1 = threading.Thread(target=printesc, args=(1,))
>     thd2 = threading.Thread(target=printesc, args=(2,))
>     thd1.run()
>     thd2.run()
>
> master()

You meant 'thd1.start( )' and 'thd2.start( )'.
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to