码迷,mamicode.com
首页 > 编程语言 > 详细

python 异步线程简单实现

时间:2014-10-15 19:23:01      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:blog   http   ar   div   art   on   log   html   ad   

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  

python 异步线程简单实现

标签:blog   http   ar   div   art   on   log   html   ad   

原文地址:http://www.cnblogs.com/Tommy-Yu/p/4026725.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!