本文介绍了删除列表的最后N个元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有更好的方法来删除列表的最后N个元素.
Is there a a better way to remove the last N elements of a list.
for i in range(0,n):
lst.pop( )
推荐答案
如果要删除最后n个元素,换句话说,请保留前len-n个元素:
if you wish to remove the last n elements, in other words, keep first len - n elements:
lst = lst[:len(lst)-n]
注意:这不是内存操作.它将创建一个副本.
Note: This is not an in memory operation. It would create a copy.
这篇关于删除列表的最后N个元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!