Javatpoint Logo
Javatpoint Logo

How to Iterate a Dictionary in Python

Foundation/ A brief on the pre-requisite knowledge:

A dictionary is one of the data types available in Python. If we are aware of sets and lists, a dictionary is another data storage simply. For a formal definition, a dictionary is an unordered collection of data stored in the form of values attached to their respective keys. So, what are these keys and values? A key in the dictionary is similar to an index. It represents the value it holds. Hence, inside a dictionary, it will store data in key and value pairs: When we open the textbook in search of a topic, we search for a topic on the index page and go to the page number.

{key1: value1, key2: value2, key3: value3….keyn: valuen}

The actual data we need is in the values, and we use keys to give an identification number to the values. This article discusses how we can iterate over the values in the dictionary. A few ways are using which we can achieve this. We'll discuss one by one with examples of each method:

1. Using the inbuilt Methods

Code:

Output:

How to Iterate a Dictionary in Python

Methods used in the code:

1. Dictionary.keys()

Returns the list of keys in the dictionary

2. Dictionary.values()

Returns the list of values in the dictionary

3. Dictionary.items()

Returns the list of all the key-value pairs as tuples in the dictionary

Understanding:

We just used the methods already defined in Python to manipulate a dictionary in the code. In the first statement, a dictionary is created. In the next three statements, we used .keys(), .values() and .items() to prints the keys, values and the (key: value) pairs in the dictionary.

2. Using the basic Functionality of a Dictionary:

Code:

Output:

How to Iterate a Dictionary in Python

Understanding:

There are two important points to be grasped from the above code:

  1. If we iterate a variable 'i' over a dictionary in Python, the dictionary's keys will be traversed.
  2. Now, if we want the values the keys hold, we need to ask the dictionary for which we use- dictionary [key].

These are the two things we've done in the code. First, we declared a dictionary and printed it. Then, we traversed through the dictionary's keys using the variable 'i'. In the next loop, we traversed through the keys and printed their values:

We can use the same loop for printing both keys and values:

Output:

How to Iterate a Dictionary in Python

3. Iterating items ():

We've already seen the method items (). We used it to print all the (key: value) pairs in the dictionary as a list of tuples. For a more clear representation of every key-value pair in the dictionary, we can iterate a variable on the method:

Code:

Output:

How to Iterate a Dictionary in Python

One Program using all types of Iteration Methods:

Output:

How to Iterate a Dictionary in Python

Summary:

In this Tutorial, we discussed:

  1. Given a dictionary, how to iterate over all the keys?
  2. Given a dictionary, how to iterate over all the values?
  3. Iterating over the dictionary with the use of inbuilt Python methods and without the use of the inbuilt methods.
  4. Given a key, how to find the value it is holding?
  5. Tuple arrangement of all the key-value pairs in the dictionary using .items ().






Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA