码迷,mamicode.com
首页 > 其他好文 > 详细

gevent实现并发

时间:2019-12-12 21:09:35      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:code   print   star   fun   图片   info   http   ctime   def   

#_author:来童星
#date:2019/12/12
import gevent
import time
def func1():
print(‘\033[31;1mfun1 starting...\033[0m‘,time.ctime())
gevent.sleep(2)
print(‘\033[31;1mfun1 ending...\033[0m‘,time.ctime())
def func2():
print(‘\033[32;1mfun2 starting...\033[0m‘,time.ctime())
gevent.sleep(1)
print(‘\033[32;1mfun2 ending...\033[0m‘,time.ctime())
gevent.joinall([
gevent.spawn(func1),
gevent.spawn(func2),

])
运行结果:

技术图片

gevent实现并发

标签:code   print   star   fun   图片   info   http   ctime   def   

原文地址:https://www.cnblogs.com/startl/p/12031583.html

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