Python Remove Duplicate Values from List Example

Published On: 15/11/2022 | Category: Python


Hi Guys,

This is a short guide on python remove duplicates from list. step by step explain python remove duplicate values from list example. I explained simply step by step how to remove duplicate values from list in python. I explained simply step by step how to avoid duplicate values in list python.

In Python, There are several ways to delete duplicate values from the list in python. we will use set() and dict() functions to remove duplicates elements from list. so let's see the below examples.

So let's see bellow example:

Example 1:

main.py
myList = ['one', 'two', 'two', 'three', 'four', 'five', 'five']
  
# Remove Duplicate Value from List
newList = list(set(myList))
  
print(newList)
Output
['three', 'two', 'four', 'five', 'one']

Example 2:

main.py
myList = [1, 2, 3, 4, 4, 5, 5]
  
# Remove Duplicate Value from List
newList = list(dict.fromkeys(myList))
  
print(newList)
Output
[1, 2, 3, 4, 5]

It will help you....

Happy Pythonic Coding!