frbsfok
0
Q:

iterate through dictionary

a_dict = {'apple':'red', 'grass':'green', 'sky':'blue'}
for key in a_dict:
  print key # for the keys
  print a_dict[key] # for the values
34
#iterate the dict by keys
for key in a_dict:
	print(key)
#iterate the dict by items - (key,value)
for item in a_dict.items():
    print(item)
#iterate the dict by values
for value in a_dict.values():
    print(value)
13
>>> for key, value in a_dict.items():
...     print(key, '->', value)
...
color -> blue
fruit -> apple
pet -> dog
1
# Python3 code to iterate through all key, value  
# pairs in a dictionary 
  
statesAndCapitals = { 
                     'Gujarat' : 'Gandhinagar', 
                     'Maharashtra' : 'Mumbai', 
                     'Rajasthan' : 'Jaipur', 
                     'Bihar' : 'Patna'
                    } 
  
# Iterating over values 
for state, capital in statesAndCapitals.items(): 
    print(state, ":", capital) 
2
for key in dictionary_name:
-1

New to Communities?

Join the community