deque-双端列队,只保留指定的n个元素
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了deque-双端列队,只保留指定的n个元素相关的知识,希望对你有一定的参考价值。
from collections import deque q = deque(maxlen=5) for x in range(10): q.append(x) q
maxlen:保留指定长度的元素
本文出自 “激情燃烧的岁月” 博客,请务必保留此出处http://liuzhengwei521.blog.51cto.com/4855442/1895085
以上是关于deque-双端列队,只保留指定的n个元素的主要内容,如果未能解决你的问题,请参考以下文章