Today we are going to share a Python program to remove the duplicate items from a list. 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 remove the duplicate items from a list.
To increase your Python knowledge, practice all Python programs:
Copy the below python program and execute it with the help of python compiler.
1 2 3 4 5 6 7 8 9 10 11 12 13 | 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 = set() unique = [] for x in a: if x not in b: unique.append(x) b.add(x) print("Non-duplicate items:") print(unique) |
Enter the number of elements in list:7
Enter element1:10
Enter element2:20
Enter element3:20
Enter element4:30
Enter element5:40
Enter element6:40
Enter element7:50
Non-duplicate items:
[10, 20, 30, 40, 50]
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.