Python: Print all unique values in a dictionary
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.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics