Python 如何在列表中移除相同的元素

Python 如何在列表中移除相同的元素

在本文中,我们将展示如何使用Python在列表中移除相同的元素。简而言之,即从两个列表中移除共同的元素。

下面是完成此任务的各种方法:

  • 使用remove()函数
  • 使用列表解析
  • 使用集合的差集操作
  • 使用集合的difference()函数

假设我们有两个包含一些元素的列表。现在我们将从两个列表中移除相同的或重复的元素。

使用remove()函数

步骤

以下是执行所需任务的算法/步骤:

  • 创建一个变量来存储inputList_1。

  • 创建另一个变量来存储inputList_2。

  • 使用for循环遍历inputList_1,并使用[:]符号创建一个副本(这将在保留复制列表的所有对象引用的同时创建一个浅拷贝原始列表)。

  • 使用if条件语句,使用in运算符检查inputList_1中的元素是否存在于inputList_2中。

  • 使用remove()方法从inputList_1和inputList_2中删除对应的元素(删除给定值的第一个出现的元素)。

  • 打印移除相同或共同元素后的InputList_1。

示例

以下程序使用remove()函数从两个列表中移除相同或共同的元素,并返回结果列表。

# input list 1
inputList_1 = [3, 6, 7, 1, 2]
# input list 2 
inputList_2 = [2, 4, 6, 7, 8, 9]

# traversing in input list 1( Here [:] is used to create shallow copy)
for element in inputList_1[:]:
   # Checking whether the element in list1 is present in list2
   if element in inputList_2:
   # removing that element from both the inputList_1 & inputList_2
      inputList_1.remove(element)
      inputList_2.remove(element)

# printing InputList_1 after removing the same or common elements
print("InputList_1 after removing same elements:", inputList_1)

输出

执行上述程序后,将生成以下输出结果 –

InputList_1 after removing same elements: [3, 1]

使用列表推导

下面的程序使用列表推导从两个列表中移除相同或公共的元素,并返回结果列表。

# input list 1
inputList_1 = [3, 6, 7, 1, 2]

# input list 2
inputList_2 = [2, 4, 6, 7, 8, 9]

# Creating a new list containing elements that are not in the second list using the list comprehension
inputList_1 = [p for p in inputList_1 if p not in inputList_2]

# printing InputList_1 after removing the same or common elements
print("InputList_1 after removing same elements:", inputList_1)

输出

执行上述程序后将生成以下输出。

InputList_1 after removing same elements: [3, 1]

使用集合差运算符

步骤

下面是执行所需任务的算法/步骤:

  • 创建一个名为 removeSameElements() 的函数,该函数从输入列表inputList_1和inputList_2中删除共同的元素。

  • 使用 set() 函数将给定的两个列表都转换为集合(创建一个集合对象。集合列表将以随机顺序出现,因为项目没有排序。它会删除所有重复项),并计算这两个集合之间的差异(从第一个列表中删除共同的元素),然后使用 list() 函数将其转换为列表(将序列/可迭代对象转换为列表)。

  • 打印上述结果。

  • 通过将inputList_1和inputList_2作为参数传递给上述定义的 removeSameElements() 函数来调用该函数。

示例

以下程序从两个列表中删除相同或共同的元素,并使用集合差运算符返回结果列表。

# creating a function that removes the common elements from
# the both the inputList_1, inputList_2 passed as arguments
def removeSameElements(inputList_1, inputList_2):

   # Converting both lists to set and calculating the set difference between the two
   # Converting the result back to list
      inputList_1 = list(set(inputList_1) - set(inputList_2))

   # printing InputList_1 after removing the same or common elements
      print("InputList_1 after removing same elements:", inputList_1)


# input list 1
inputList_1 = [3, 6, 7, 1, 2]

# input list 2
inputList_2 = [2, 4, 6, 7, 8, 9]

# calling the removeSameElements() function by passing both the input lists
removeSameElements(inputList_1, inputList_2)

输出

执行上面的程序后,将生成以下输出-

InputList_1 after removing same elements: [1, 3]

使用Set difference()函数

在Python中, difference() 方法返回一个包含两个集合之间差异的集合,即返回的集合包括只出现在第一个集合中的项目,而排除了同时在两个集合中存在的项目。

步骤

以下是执行所需任务的算法/步骤:

  • 使用set()函数将第一个列表转换成集合,然后使用 difference() 函数(difference()方法比较两个集合并返回唯一于第一个集合的项目)计算该集合与第二个列表之间的差异,最后使用list()函数将结果转换为列表。

  • 在删除相同或共同元素之后,打印InputList_1。

示例

以下程序使用set difference()函数从两个列表中删除相同或共同的元素,并返回结果列表。

# input list 1
inputList_1 = [3, 6, 7, 1, 2]

# input list 2
inputList_2 = [2, 4, 6, 7, 8, 9]

# Converting the first list to set and calculate the difference between the second list using the difference() function

# Converting the result back to list
inputList_1 = list(set(inputList_1).difference(inputList_2))

# printing InputList_1 after removing the same or common elements
print("InputList_1 after removing same elements:", inputList_1)

输出

执行以上程序后,将生成以下输出结果:

InputList_1 after removing same elements: [1, 3]

结论

在本文中,我们学习了四种不同的方法来从第一个列表和第二个列表中删除相同的元素。我们还学习了如何将列表转换为集合,以及将集合转换为列表。我们学习了如何进行浅拷贝,并且如何遍历可迭代对象的浅拷贝(列表)。

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程