gevent实现并发
#_author:来童星#date:2019/12/12import geventimport timedef 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),])运行结果:
相关推荐
efeve 2020-09-14
dashoumeixi 2020-07-20
SDUTACM 2020-05-03
jacktangj 2020-04-17
wyqwilliam 2020-02-10
zuiaiqun 2020-01-23
talkincode 2020-01-11
shengge0 2019-12-26
dashoumeixi 2019-12-22
hamutailang 2019-11-03
wklken的笔记 2019-11-01
georgeandgeorge 2019-10-31
chunjiekid 2019-07-01
talkincode 2019-06-30
solarLan 2019-06-28
mayflowers 2019-06-28