摘要: #队列中的ipc(进程间通信),作用是为了降低耦合性 # from multiprocessing import Process,Queue # # def consumer(q,name): # while 1: # a=q.get()#获得队列数据 # if a: # print("%s拿走了%s"%(name,a)) # ... 阅读全文
posted @ 2018-08-22 19:53 python小Faker 阅读(123) 评论(0) 推荐(0) 编辑