Creating an empty deque in Python with a max length?

本秂侑毒 提交于 2019-12-01 04:01:20

问题


I'm looking at the documentation for a Python deque, and it looks like the constructor is deque([iterable[, maxlen]]). Is there no way to make an empty deque (that is, without specifying the iterable) with a max length?


回答1:


You could provide a list literal directly, so you don't have to declare anything on a separate line:

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

You could also provide maxlen as a named argument:

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


来源:https://stackoverflow.com/questions/26124816/creating-an-empty-deque-in-python-with-a-max-length

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!