python 异步线程简单实现

import threading

def foo():
    with open(r'./result.log','wb') as f:
        f.write('=some logs here ==')

t = threading.Thread(foo)
t.start()

当然你也可以用高级方法,参考这,https://docs.python.org/2/library/multiprocessing.html?highlight=apply_async  

posted @ 2014-10-15 16:38  tommy.yu  阅读(309)  评论(0编辑  收藏  举报