如何檢查Python中的隊列長度?如何檢查Python中的隊列長度
我沒有看到他們在Python提供Queue.lenght ....
http://docs.python.org/tutorial/datastructures.html
from collections import deque
queue = deque(["Eric", "John", "Michael"])
該如何檢查隊列的長度?
而且我們可以初始化像
queue= deque([]) #is this length 0 queue?
你嘗試'LEN(隊列)'?這通常是Python處理元素數量的方式。 – mjgpy3