How to Extract Unique Values from a Dictionary in Python

In this tutorial, we’ll learn how to program “How to Extract Unique Values from a Dictionary in Python.” The objective is to safely extract only unique values from a dictionary. This tutorial will guide you through the process step by step to identify and extract all unique values. So, let’s get started!

This topic is straightforward to understand. Just follow the instructions I provide, and you’ll complete it with ease. The program I’ll demonstrate will illustrate the proper way to find and extract unique values from a dictionary. So, let’s dive into the coding process!

Getting Started:

First you will have to download & install the Python IDLE's, here's the link for the Integrated Development And Learning Environment for Python https://www.python.org/downloads/.

Creating Main Function

This is the main function of the application. The following code will display a simple GUI in terminal console that will display program. To do this, simply copy and paste these blocks of code into the IDLE text editor.
  1. my_dict = {'set1' : [1, 2, 3, 8],
  2.                         'set2' : [10, 13, 5],
  3.                         'set3' : [6, 12, 8],
  4.                         'set4' : [4, 2, 7]}
  5.  
  6.  
  7. while True:
  8.         print("\n================= Extract Unique Values from a Dictionary =================\n\n")
  9.  
  10.  
  11.         print("Current List : " + str(my_dict))
  12.  
  13.         x=list(my_dict.values())
  14.         y=[]
  15.         res=[]
  16.         for i in x:
  17.                 y.extend(i)
  18.         for i in y:
  19.                 if i not in res:
  20.                         res.append(i)
  21.         res.sort()
  22.  
  23.  
  24.         print("The unique values : " + str(res))
  25.  
  26.         opt = input("\nDo you want to try again?(yes/no): ")
  27.  
  28.         if opt.lower() == 'yes':
  29.                 ret=False
  30.         elif opt.lower() == 'no':
  31.                 ret=True
  32.                 print("Exiting program....")
  33.         else:
  34.                 print("Please enter yes/no:")
  35.                 break
  36.  
  37.         if ret == False:
  38.                 continue

This program extracts unique values from a dictionary where the values are lists of numbers. It first gathers all the values, flattens them into a single list, removes duplicates, sorts the result, and displays the unique numbers. The loop allows users to run the program multiple times until they choose to exit.

Output:

There you have it we successfully created How to Extract Unique Values from a Dictionary in Python. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

More Tutorials for Python Language

Python Tutorials

Add new comment