如何利用set函數(shù)進(jìn)行集合運(yùn)算

小樊
83
2024-09-14 06:47:37

在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)算的示例:

  1. 創(chuàng)建集合:
# 使用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}
  1. 交集(Intersection):
# 使用&操作符計(jì)算交集
intersection = set1 & set2

# 或者使用intersection方法
intersection = set1.intersection(set2)
  1. 并集(Union):
# 使用|操作符計(jì)算并集
union = set1 | set2

# 或者使用union方法
union = set1.union(set2)
  1. 差集(Difference):
# 使用-操作符計(jì)算差集
difference = set1 - set2

# 或者使用difference方法
difference = set1.difference(set2)
  1. 對(duì)稱差集(Symmetric Difference):
# 使用^操作符計(jì)算對(duì)稱差集
sym_difference = set1 ^ set2

# 或者使用symmetric_difference方法
sym_difference = set1.symmetric_difference(set2)

通過(guò)這些基本的集合運(yùn)算,你可以根據(jù)需要進(jìn)行更復(fù)雜的集合操作。

0