在Python中创建一个具有最大长度的空双端队列?

我正在查看Python deque的文档,看起来构造函数是deque([iterable [,maxlen]]).有没有办法用最大长度制作一个空的双端队列(也就是说,没有指定可迭代的)?

解决方法:

您可以直接提供列表文字,因此您不必在单独的行上声明任何内容:

>>> collections.deque([], 42)
deque([], maxlen=42)

您还可以将maxlen作为命名参数提供:

>>> collections.deque(maxlen=23)
deque([], maxlen=23)
上一篇:QA:无重复字符的最长子串


下一篇:3. Configure the Identity Service