Perform queue operations,首先要引入queue這個庫
import queue
q = queue.Queue(10)
使用隊列的put和getAdd or get elements to the queue
def set_queue():
for i in range(10):
q.put(i) # 添加元素
print(q.queue) # output the entire queue
print(q.get()) # 獲取元素
print(q.queue)
#輸出如下:
deque([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
0
deque([1, 2, 3, 4, 5, 6, 7, 8, 9])
可以看到,Once the element is fetched from the queue,The element no longer exists in the queue
使用qsize方法,Get the size of the current queue.
def set_queue():
for i in range(10):
q.put(i) # 添加元素
print(q.qsize()) # 獲取大小<br><br><br>
#輸出如下:
10
''' 學習中遇到問題沒人解答?小編創建了一個Python學習交流群:711312441 尋找有志同道合的小伙伴,互幫互助,群裡還有不錯的視頻學習教程和PDF電子書! '''
def set_queue():
print(q.empty()) # 判斷隊列是否為空,空則返回True
for i in range(10):
q.put(i) # 添加元素
print(q.qsize()) # 獲取大小
print(q.empty())
#輸出如下:
True
10
False