使用deque
,指定maxlen
参数的值为N,例如:文章来源:https://www.toymoban.com/news/detail-666435.html
>>> from collections import deque
>>> dq = deque(maxlen=3)
>>> dq.append(1)
>>> dq.append(2)
>>> dq.append(3)
>>> dq.append(4)
>>> dq.append(5)
>>> print(dq)
deque([3, 4, 5], maxlen=3)
参考
Python Cookbook 1.3文章来源地址https://www.toymoban.com/news/detail-666435.html
到了这里,关于【Python】【数据结构和算法】保留最后N个元素的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!