w3resource

Python: Print all unique values in a dictionary

Python dictionary: Exercise-20 with Solution

Write a Python program to print all distinct values in a dictionary.

Sample Solution:

Python Code:

# Create a list 'L' containing dictionaries with key-value pairs.
L = [{"V": "S001"}, {"V": "S002"}, {"VI": "S001"}, {"VI": "S005"}, {"VII": "S005"}, {"V": "S009"}, {"VIII": "S007"}]

# Print a message indicating the start of the code section.
print("Original List: ", L)

# Create a set 'u_value' to store unique values found in the dictionaries within the list 'L'.
# Use a set comprehension to iterate through the dictionaries and values and extract unique values.
u_value = set(val for dic in L for val in dic.values())

# Print the unique values stored in the 'u_value' set.
print("Unique Values: ", u_value) 

Sample Output:

Original List:  [{'V': 'S001'}, {'V': 'S002'}, {'VI': 'S001'}, {'VI': 'S005'}, {'VII': 'S005'}, {'V': 'S009'},
 {'VIII': 'S007'}]                                                                                            
Unique Values:  {'S009', 'S002', 'S007', 'S005', 'S001'}  

Python Code Editor:

Previous: Write a Python program to combine two dictionary adding values for common keys.
Next: Write a Python program to create and display all combinations of letters, selecting each letter from a different key in a dictionary.

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/dictionary/python-data-type-dictionary-exercise-20.php