Today we are going to share a Python Program to find the Union of two lists. If you are a python beginner and want to start learning the python programming, then keep your close attention in this tutorial as I am going to share a Python Program to find the Union of two lists.
1 2 3 4 5 6 7 8 | a=[] n= int(input("Enter the number of elements in list:")) for x in range(0,n): element=int(input("Enter element" + str(x+1) + ":")) a.append(element) b=[sum(a[0:x+1]) for x in range(0,len(a))] print("The original list is: ",a) print("The new list is: ",b) |
Enter the number of elements in list:6
Enter element1:10
Enter element2:10
Enter element3:5
Enter element4:20
Enter element5:20
Enter element6:5
Non-duplicate items:
[5, 10, 20]
To increase your Python knowledge, practice all Python programs, here is a collection of 100+ Python problems with solutions.
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.