溫馨提示×

Python列表與集合怎么并集

小億
109
2024-05-06 15:21:58
欄目: 編程語言

Python中可以使用union()方法或者|運(yùn)算符來實(shí)現(xiàn)列表與集合的并集操作。

使用union()方法示例如下:

list1 = [1, 2, 3, 4]
set1 = {3, 4, 5, 6}

result = list1.union(set1)
print(result)

使用|運(yùn)算符示例如下:

list1 = [1, 2, 3, 4]
set1 = {3, 4, 5, 6}

result = list1 | set1
print(result)

以上兩種方法都會得到結(jié)果為[1, 2, 3, 4, 5, 6]的并集。

0