Python 中的 set 是一个无序的不重复元素集合,可以使用大括号 {}
或者内置函数 set()
来创建。这里有一些关于如何正确使用 Python 的 set 函数的例子:
empty_set = set()
print(empty_set) # 输出:set()
my_list = [1, 2, 3, 4, 4, 5, 6, 6]
my_set = set(my_list)
print(my_set) # 输出:{1, 2, 3, 4, 5, 6}
my_set = {1, 2, 3}
my_set.add(4)
print(my_set) # 输出:{1, 2, 3, 4}
my_set = {1, 2, 3, 4}
my_set.remove(4)
print(my_set) # 输出:{1, 2, 3}
my_set = {1, 2, 3}
print(1 in my_set) # 输出:True
print(4 in my_set) # 输出:False
set_a = {1, 2, 3, 4}
set_b = {3, 4, 5, 6}
intersection = set_a.intersection(set_b)
print(intersection) # 输出:{3, 4}
union = set_a.union(set_b)
print(union) # 输出:{1, 2, 3, 4, 5, 6}
difference = set_a.difference(set_b)
print(difference) # 输出:{1, 2}
symmetric_difference = set_a.symmetric_difference(set_b)
print(symmetric_difference) # 输出:{1, 2, 5, 6}
my_set = {1, 2, 3, 4}
my_list = list(my_set)
print(my_list) # 输出:[1, 2, 3, 4]
通过上述示例,你应该已经了解了如何在 Python 中正确地使用 set 函数。记住,集合是一个无序的数据结构,所以它们不能被索引或排序。如果你需要这些功能,请考虑使用列表或元组。