Answers for "how to read dictionary for loop in python"

24

python loop through dictionary

dictionary = {52:"E",126:"A",134:"B",188:"C",189:"D"}
for key, value in dictionary.items():
	print(key)
	print(value)
Posted by: Guest on July-02-2020
0

fetch data from dictionary python in for loop

>>> # Python 2.7
>>> a_dict = {'color': 'blue', 'fruit': 'apple', 'pet': 'dog'}
>>> a_dict
{'color': 'blue', 'pet': 'dog', 'fruit': 'apple'}
>>> a_dict
{'color': 'blue', 'pet': 'dog', 'fruit': 'apple'}
Posted by: Guest on January-19-2021

Code answers related to "how to read dictionary for loop in python"

Python Answers by Framework

Browse Popular Code Answers by Language