Shaozhong SHI wrote:
> Can it be divided into several processes?

I'd do it like this:
from time import sleep
from threading import Thread

t = Thread(target=lambda: sleep(1))
t.run()

# do your work here

t.wait()

-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to