from threading import Thread from queue import Queue queue = Queue() def consumer(): print('consumer waiting') queue.get() # put() の後で ...
確定! 回上一頁