python 队列
# Author:XiangLiang
import queue
#q = queue.LifoQueue() #先进后出
#q = queue.PriorityQueue() #优先级
q = queue.Queue(maxsize=3) #固定大小,先进先出
q.put(1)
q.put(2)
q.put(3)
print(q.get())
print(q.get())
print(q.get())
#队列两大功能:
#1.解耦,使程序直接实现松耦合
#2.提高处理效率