导语:
本文主要介绍了关于python线程中deque如何使用?的相关知识,希望可以帮到处于编程学习途中的小伙伴
1、说明
collections.deque 类是线程安全的数据类型,可以从两端快速添加或删除元素。而如果你想有一种数据类型来存储“最近使用过的元素”,deque也是一个不错的选择。这是因为在新建双向队列时,可以指定队列的大小。如果队列已满,你还可以从后端删除过期元素,并在尾端添加新元素。
2、实例
In [1]: from collections import deque
In [2]: dq = deque(range(10), maxlen=10)
In [3]: dq
Out[3]: deque([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
In [4]: dq.rotate(3)
In [5]: dq
Out[5]: deque([7, 8, 9, 0, 1, 2, 3, 4, 5, 6])
In [6]: dq.rotate(-4)
In [7]: dq
Out[7]: deque([1, 2, 3, 4, 5, 6, 7, 8, 9, 0])
In [8]: dq.appendleft(-1)
In [9]: dq
Out[9]: deque([-1, 1, 2, 3, 4, 5, 6, 7, 8, 9])
In [10]: dq.extend([11, 22, 33])
In [11]: dq
Out[11]: deque([3, 4, 5, 6, 7, 8, 9, 11, 22, 33])
In [12]: dq.extendleft([10, 20, 30, 40])
In [13]: dq
Out[13]: deque([40, 30, 20, 10, 3, 4, 5, 6, 7, 8])
以上就是python线程中deque的使用,希望能对大家有所帮助,更多知识尽在python学习网。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python中的count函数是什么意思?08/24
- ♥ 什么类型的python对象是08/24
- ♥ 如何在python中分解一个数字?08/30
- ♥ Python列表的增删改查12/24
- ♥ python出错时如何抛出异常11/29
- ♥ geany如何配置python的语言版本?10/25
内容反馈