Thank you for your helping.
--
http://mail.python.org/mailman/listinfo/python-list
billiejoex wrote:
> Hi all. Hi would like to use two threads in a program but all the examples I
> found on the net use oop programming that I doesn't love too much. :-)
> Can you code me a short example in wich two different functions are executed
> at the same time, plz?
import time
from threa
Is there any reason why you wouldn't want to do this using the the
threading class? To each his own I suppose. You can try the following
though you'll at least need to use functions:
import time
import thread
def myfunction(string,sleeptime,*args):
while 1:
print string
time
Hi all. Hi would like to use two threads in a program but all the examples I
found on the net use oop programming that I doesn't love too much. :-)
Can you code me a short example in wich two different functions are executed
at the same time, plz?
Thank you all.
--
http://mail.python.org/mail