How to Iterate over Dictionary Values in Python?

How to Iterate over Dictionary Values in Python?

Python ? Iterate over Dictionary Values

To iterate over Dictionary values in Python, get the dictionary values using dict.values() method and use a for loop on this values object to traverse through each value in the dictionary. The following code snippet demonstrates how to iterate over values in a Python Dictionary.

for value in dictionary.values(): #statement(s)

Example ? Iterate over Dictionary Values

In the following example, we have taken a dictionary with three key:value pairs. We will get the values from this dictionary using dict.values() method and use Python For Loop to traverse through each value. Python Program

dictionary = {'a': 58, 'b': 61, 'c': 39} for value in dictionary.values():

print(value)

Output

58 61 39

Conclusion

In this Python Tutorial, we learned how to iterate over dictionary values in Python with example.

Python Programming

Python Tutorial Install Python Install Anaconda Python Python HelloWorld Program Python Variables Python Variable Data Type Conversion Python Comments

Control Statements

Python If Python If Else Python While Loop Python For Loop

Python String

Python String Methods Python String Length Python String Replace Python Split String Python Count Occurrences of Sub-String Python Sort List of Strings

Functions

Python Functions

Python Collections

Python List Python Dictionary

Advanced

Python Multithreading

Useful Resources

Python Interview Questions

................
................

In order to avoid copyright disputes, this page is only a partial summary.

Google Online Preview   Download