使用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()函數來操作集合數據類型。