import queue
# FIFO队列
q = queue.Queue()
for i in range(5):
q.put(i)
while not q.empty():
print(q.get())
# 输出如下
# 0
# 1
# 2
# 3
# 4
import Queue
# LIFO队列
q = queue.LifoQueue()
for i in range(5):
q.put(i)
while not q.empty():
print(q.get())
# 输出如下:
# 4
# 3
# 2
# 1
# 0
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |