Answers for "python for key and value in dictionary"

117

python iterate dictionary key value

a_dict = {'color': 'blue', 'fruit': 'apple', 'pet': 'dog'}
for key, value in a_dict.items():
  print(key, '->', value)
Posted by: Guest on December-13-2019
0

python iter on a dic key value

for k, v in d.items():
    print(k, v)
# key1 1
# key2 2
# key3 3
Posted by: Guest on June-16-2021

Code answers related to "python for key and value in dictionary"

Python Answers by Framework

Browse Popular Code Answers by Language