程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Python operation queue

編輯:Python

Perform queue operations,首先要引入queue這個庫

一:設置隊列(In parentheses is how much data the queue can hold,如果不設置,can keep increasing)

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

  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved