With the help of Queue module we can create a new queue object that can hold a specific number of items and threads. Queue module have following method which is given below.
get(): The get() removes and returns an item from the queue.
put(): The put adds item to a queue.
qsize() : The qsize() returns the number of items that are currently in the queue.
empty(): The empty( ) returns True if queue is empty; otherwise, False.
full(): the full() returns True if queue is full; otherwise, False.
And example of all method is given below-
0 Comment(s)