Python 程式查詢兩個或更多列表的並集?


並集運算意味著,我們必須採用 List1 和 List 2 中的所有元素,並將所有元素儲存在另一個第三個列表中。

List1::[1,2,3]
List2::[4,5,6]
List3::[1,2,3,4,5,6]

演算法

Step 1: Input two lists.
Step 2: for union operation we just use + operator.

示例程式碼

# UNION OPERATION
A=list()
B=list()
n=int(input("Enter the size of the List ::"))
print("Enter the Element of first list::")
for i in range(int(n)):
   k=int(input(""))
   A.append(k)
print("Enter the Element of second list::")
for i in range(int(n)):
   k=int(input(""))
   B.append(k)
   C = A + B
print("THE FINAL LIST IS ::>",C)

輸出

Enter the size of the List ::4
Enter the Element of first list::
23
11
22
33
Enter the Element of second list::
33
22
67
45
THE FINAL LIST IS ::> [23, 11, 22, 33, 33, 22, 67, 45]

更新於: 30-07-2019

540 次觀看

開啟你的 職業

完成課程獲得認證

開始吧
廣告