python3 queue模块

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/pingfan2014/article/details/84370499

参考:https://blog.csdn.net/qq_33961117/article/details/82501552

1.queue.Queue():队列,先进先出

import queue

# queue.Queue() #先进先出

q=queue.Queue(3)
q.put(1)
q.put(2)
q.put(3)
print(q.get())
print(q.get())
print(q.get())

猜你喜欢

转载自blog.csdn.net/pingfan2014/article/details/84370499
今日推荐