import threading import time import queue def consume(thread_name, q): while True: time.sleep(2) product = q.get() print("%s consume %s" ...
確定! 回上一頁