使用set()函数可以创建一个集合对象,集合是一种无序且不重复的数据类型。
以下是一些示例代码,演示如何优雅地使用Python的set()函数:
my_set = set()
my_set = set([1, 2, 3, 4, 5])
my_set.add(6)
my_set.remove(3)
if 4 in my_set:
print("4 is in the set")
set1 = set([1, 2, 3])
set2 = set([3, 4, 5])
# 交集
intersection = set1.intersection(set2)
print(intersection)
# 并集
union = set1.union(set2)
print(union)
# 差集
difference = set1.difference(set2)
print(difference)
通过这些示例代码,您可以更加优雅地使用Python的set()函数来操作集合数据类型。