在Python中,set
是一個(gè)內(nèi)置類型,可以用來(lái)存儲(chǔ)不重復(fù)的元素。你可以使用set
函數(shù)來(lái)創(chuàng)建集合并執(zhí)行集合運(yùn)算,例如交集、并集和差集等。
下面是一些關(guān)于如何使用set
函數(shù)進(jìn)行集合運(yùn)算的示例:
# 使用set函數(shù)創(chuàng)建集合
set1 = set([1, 2, 3, 4])
set2 = set([3, 4, 5, 6])
# 或者使用大括號(hào)直接創(chuàng)建集合
set3 = {1, 2, 3, 4}
set4 = {3, 4, 5, 6}
# 使用&操作符計(jì)算交集
intersection = set1 & set2
# 或者使用intersection方法
intersection = set1.intersection(set2)
# 使用|操作符計(jì)算并集
union = set1 | set2
# 或者使用union方法
union = set1.union(set2)
# 使用-操作符計(jì)算差集
difference = set1 - set2
# 或者使用difference方法
difference = set1.difference(set2)
# 使用^操作符計(jì)算對(duì)稱差集
sym_difference = set1 ^ set2
# 或者使用symmetric_difference方法
sym_difference = set1.symmetric_difference(set2)
通過(guò)這些基本的集合運(yùn)算,你可以根據(jù)需要進(jìn)行更復(fù)雜的集合操作。