Python程序从集合中删除项目

我们非常熟悉术语“集合”,因为在数学方面,我们了解集合。Python中的Set是一种等同于数学中的Set的数据结构。它可能包含各种元素;集合中元素的顺序是不确定的。您可以添加和删除集合的元素,可以迭代集合的元素,并且可以对集合(联合,交集,差)执行标准操作。

这里给出了集合,我们只是从集合中删除元素。在这里,我们使用pop()方法,这pop()是Python中的一种内置方法,用于从集合中逐一弹出或删除元素。

示例

A = [2, 9, 80, 115, 22, 120]
Output
NEW SET IS ::>
{9, 80, 115, 22, 120}
{80, 115, 22, 120}
{115, 22, 120}
{22, 120}
{120}
Set ()

算法

Step 1:  Create a set.
Step 2:  Use pop() function. The method pop() removes and returns last object from the list.

范例程式码

# Python program to remove elements from set
def removeelement(set1):
   print("NEW SET IS ::>")
   while set1: 
      set1.pop() 
      print(set1)
# Driver Code
set1 = set([22, 120, 130, 115, 80, 9])
removeelement(set1)

输出结果

NEW SET IS ::>
{9, 80, 115, 22, 120}
{80, 115, 22, 120}
{115, 22, 120}
{22, 120}
{120}
set()