溫馨提示×

python中set能進(jìn)行并集操作嗎

小樊
81
2024-11-18 22:57:24
欄目: 編程語言

是的,在Python中,set數(shù)據(jù)結(jié)構(gòu)可以進(jìn)行并集操作。你可以使用union()方法或者|運(yùn)算符來實(shí)現(xiàn)兩個(gè)集合的并集。

以下是使用union()方法的示例:

set1 = {1, 2, 3}
set2 = {3, 4, 5}
result = set1.union(set2)
print(result)  # 輸出:{1, 2, 3, 4, 5}

以下是使用|運(yùn)算符的示例:

set1 = {1, 2, 3}
set2 = {3, 4, 5}
result = set1 | set2
print(result)  # 輸出:{1, 2, 3, 4, 5}

在這兩個(gè)示例中,我們首先創(chuàng)建了兩個(gè)集合set1set2,然后使用union()方法或|運(yùn)算符計(jì)算它們的并集,并將結(jié)果存儲(chǔ)在變量result中。最后,我們打印出結(jié)果。

0