在Python中,set是一种容器类型,用于存储不重复的元素集合。它类似于数学中的集合,没有固定顺序,而且元素不可重复。
set的常用操作包括:
my_set = {1, 2, 3} # 使用花括号创建set
my_set = set([1, 2, 3]) # 使用set()函数创建set
my_set.add(4)
my_set.remove(3)
my_set.discard(3)
set1 = {1, 2, 3}
set2 = {2, 3, 4}
union_set = set1 | set2 # 并集
intersection_set = set1 & set2 # 交集
difference_set = set1 - set2 # 差集
for item in my_set:
print(item)
需要注意的是,set中的元素必须是不可变类型,例如数字、字符串、元组等,而不能包含可变类型的元素,如列表、字典等。因为set是基于哈希表实现的,可变类型的元素没有哈希值,无法作为set的元素。