python 集合集合的使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 集合集合的使用相关的知识,希望对你有一定的参考价值。

## dequed的的使用使用
from collections import deque

# ctor which use iterable data
d = deque((1, 2, 3))
d1  = deque([1, 2, 3])
d2 = deque(range(10))

# append data to the end of deque
d.append(4) # 1, 2, 3, 4
d.appendleft(0) # 0, 1, 2, 3, 4

# count the number of deque number which equals 4
d.count(4) # 1

d.pop() # remove and return the right side of the deque
p.popleft() # remove and return the element of left side
# extend the right side of the deque
d.extend(iterable)

以上是关于python 集合集合的使用的主要内容,如果未能解决你的问题,请参考以下文章

Python基础14 集合

Python之集合函数

Python--集合类型及操作

python 集合集合的使用

Python中set集合使用方法

python之集合的使用