ইউনিয়ন অপারেশন মানে, আমাদের তালিকা 1 এবং তালিকা 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]