摘要: 消息队列 # 内置队列 from multiprocessing import Queue q = Queue(5) # 自定义队列长度 q.put(111) q.put(222) q.put(333) print(q.full()) # False q.put(444) q.put(555) # 阅读全文
posted @ 2022-04-20 23:45 扶我上码 阅读(31) 评论(0) 推荐(0)