阅读量:0
在Python中,set()
函数主要用于创建一个集合(set),它是一个无序的不重复元素序列。以下是set()
函数在Python中的一些常见应用场景:
- 去除列表或元组中的重复元素:
my_list = [1, 2, 3, 4, 4, 5, 6, 6] unique_list = list(set(my_list)) print(unique_list) # 输出:[1, 2, 3, 4, 5, 6]
- 交集、并集、差集和对称差集操作:
setA = set([1, 2, 3, 4]) setB = set([3, 4, 5, 6]) # 交集 intersection = setA.intersection(setB) # 输出:{3, 4} # 并集 union = setA.union(setB) # 输出:{1, 2, 3, 4, 5, 6} # 差集 difference = setA.difference(setB) # 输出:{1, 2} # 对称差集 symmetric_difference = setA.symmetric_difference(setB) # 输出:{1, 2, 5, 6}
- 检查元素是否存在于集合中:
my_set = set([1, 2, 3, 4, 5]) print(3 in my_set) # 输出:True print(6 in my_set) # 输出:False
- 添加和删除元素:
my_set = set() my_set.add(1) my_set.add(2) my_set.remove(1) print(my_set) # 输出:{2}
- 遍历集合中的元素:
my_set = set([1, 2, 3, 4, 5]) for item in my_set: print(item)
总之,set()
函数在Python中主要用于处理集合相关的操作,如去重、集合运算等。