w3resource

Python: Remove duplicate dictionary from a given list

Python List: Exercise - 113 with Solution

Write a Python program to remove duplicate dictionary entries from a given list.

Visual Presentation:

Python List: Remove duplicate dictionary from a given list.

Sample Solution:

Python Code:

# Define a function 'remove_duplicate_dictionary' that removes duplicate dictionaries from a list
def remove_duplicate_dictionary(list_color):
    # Use a set comprehension to convert each dictionary in the list to a tuple and remove duplicates
    # Then, convert the unique tuples back to dictionaries
    result = [dict(e) for e in {tuple(d.items()) for d in list_color}]
    return result

# Create a list 'list_color' containing dictionaries with color names as keys and hexadecimal color codes as values
list_color = [{'Green': '#008000'}, {'Black': '#000000'}, {'Blue': '#0000FF'}, {'Green': '#008000'}]

# Print a message indicating the original list with duplicate dictionaries
print ("Original list with duplicate dictionary:")
# Print the contents of the 'list_color' list
print(list_color)

# Print a message indicating the operation to remove duplicate dictionaries
print("\nAfter removing duplicate dictionary of the said list:")

# Call the 'remove_duplicate_dictionary' function with 'list_color' and print the result
print(remove_duplicate_dictionary(list_color))

Sample Output:

Original list with duplicate dictionary:
[{'Green': '#008000'}, {'Black': '#000000'}, {'Blue': '#0000FF'}, {'Green': '#008000'}]

After removing duplicate dictionary of the said list:
[{'Black': '#000000'}, {'Blue': '#0000FF'}, {'Green': '#008000'}]

Flowchart:

Flowchart: Remove duplicate dictionary from a given list.

Python Code Editor:

Previous: Write a Python program to check whether a specified list is sorted or not.
Next: Write a Python program to extract the nth element from a given list of tuples.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/list/python-data-type-list-exercise-113.php