阅读量:0
Python中的set()函数用于创建一个无序且不重复的集合。在数据处理中,set函数可以用来去除列表中的重复元素,或者用来对数据进行交集、并集、差集等操作。
例如,可以利用set函数去除一个列表中的重复元素:
data = [1, 2, 3, 2, 4, 5, 1] unique_data = set(data) print(unique_data) # 输出结果为 {1, 2, 3, 4, 5}
另外,set函数还可以对两个集合进行交集、并集、差集等操作:
set1 = {1, 2, 3, 4, 5} set2 = {3, 4, 5, 6, 7} intersection = set1.intersection(set2) # 交集 union = set1.union(set2) # 并集 difference = set1.difference(set2) # 差集 print(intersection, union, difference) # 输出结果为 {3, 4, 5} {1, 2, 3, 4, 5, 6, 7} {1, 2}
因此,set函数在数据处理中起着去重、集合运算等重要角色。