Tag Archives: multithreading

python multithreading + callback

http://www.runoob.com/python/python-multithreading.html import time import threading def main(num, callback): print "Start" longtime(callback, num) print "End" def longtime(func, num): time.sleep(5) func(num) def... Read More | Share it now!