Python 如何从另一个列表中移除索引列表
在本文中,我们将展示如何使用Python从原始列表中移除索引列表元素。现在我们看到两种方法来完成这个任务 –
- 使用pop()方法
-
使用del关键字
假设我们有一个包含一些元素的列表。我们将使用上述不同的方法从主列表中移除索引列表元素。
注意:
我们必须将索引列表按降序排序,因为从开头删除元素将会改变其他元素的索引,而且删除另一个元素将导致索引错位,从而得到错误的结果。
让我们用一个示例来演示这一点。
考虑以下列表 –
list = ["Welcome," "to," "tutorialspoint," "python"]
indices List = [ 0, 2]
删除元素时的问题
如果我们从开头删除元素,位于索引0的元素“ Welcome ”将首先被删除。
现在修改后的列表如下所示−
list = ["to," "tutorialspoint," "python"]
如果我们删除索引为2的元素,即”python”,修改后的列表如下所示。
list = ["to," "tutorialspoint]
但结果应该是
list = ["to”,"python"]
因为索引0和2的元素是“Welcome”和“tutorialspoint”。
所以为了解决这个问题,我们从末尾删除元素,以保证索引不会受到影响。
方法1:使用pop()函数
步骤
以下是执行所需任务的算法/步骤:
- 创建一个变量来存储输入列表。
-
输入要删除项目的索引列表。
-
使用sorted()函数(返回给定可迭代对象的排序列表。如果reverse=True,则按降序排序;如果reverse=False,则按升序排序。默认为False,即升序),将给定的索引列表以及reverse=True作为参数排序,使之按降序排序。
-
使用for循环遍历给定的索引列表。
-
使用if条件语句,检查相应的迭代器索引是否小于列表长度(使用len()函数返回对象中的项目数)。
-
如果条件为真,则使用pop()函数删除相应索引处的项目。
-
在给定索引处删除项目后,打印列表。
示例
以下程序使用pop()函数根据索引列表从主/原始列表中删除元素后返回列表:
# input list
inputList = ["Welcome", 20, "to", "tutorialspoint", 30, "python"]
# Entering the indices list at which the items are to be deleted
givenIndices = [1, 4, 5]
# Reversing Indices List
indicesList = sorted(givenIndices, reverse=True)
# Traversing in the indices list
for indx in indicesList:
# checking whether the corresponding iterator index is less than the list length
if indx < len(inputList):
# removing element by index using pop() function
inputList.pop(indx)
# printing the list after deleting items at the given indices
print("List after deleting items at the given indices:\n", inputList)
输出
执行上述程序后,将生成以下输出结果-
List after deleting items at the given indices:
['Welcome', 'tutorialspoint']
我们创建了一个列表,并向其中添加了一些随机值。然后,我们创建了另一个索引列表,用于存储待删除的主列表元素的索引。为了避免冲突,我们以降序方式对索引列表进行排序。然后,我们遍历索引列表,检查每个元素的索引是否小于主列表的长度,因为我们只能删除索引小于列表长度的元素。然后,通过传递索引,我们从主列表中移除该元素,并显示删除索引列表索引元素后的最终主列表。
方法2:使用del()函数
步骤
以下是执行所需任务的算法/步骤:
- 使用 sorted() 函数对给定的索引列表进行降序排序,将给定的索引列表和reverse=True作为参数传递给它。
-
使用 for 循环遍历给定的索引列表。
-
使用 if 条件语句,检查相应的迭代器索引是否小于具有 len() 函数的列表长度(len()方法返回对象中的项目数)。
-
使用 del 关键字,删除给定索引(迭代器)的列表项。
-
打印删除了索引列表中所有元素后的列表。
语法
del list object [index]"
这是一个可以根据索引位置从列表中删除项目的命令。
如果列表为空或指定的索引超出范围,del关键字将引发IndexError。
示例
以下程序使用del关键字根据索引列表删除主/原始列表的元素后返回列表-
inputList = ["Welcome", 20, "to", "tutorialspoint", 30, "python"]
# index list
givenIndices = [0, 3]
# Reversing Indices List
indicesList = sorted(givenIndices, reverse=True)
# Traversing in the indices list
for indx in indicesList:
# checking whether the corresponding iterator index is less than the list length
if indx < len(inputList):
# removing element by index using del keyword
del inputList[indx]
# printing the list after deleting items at the given indices
print("List after deleting items at the given indices:\n")
print(inputList)
输出
List after deleting items at the given indices:
[20, 'to', 30, 'python']
结论
在本文中,我们学习了如何使用pop()函数和del关键字从原始列表中删除索引列表。通过实际示例,我们还学习了为什么我们无法从开头删除元素。