Answers for "how to to iterate over dictionary"

116

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

iterate through dict with condition

>>> categories=   [{ 'Id': 1350, 'hasCategory': True},
               { 'Id': 113563, 'hasCategory': True},
               { 'Id': 328422, 'hasCategory': False}]
>>> [i['Id'] for i in categories if i['hasCategory'] == True]
[1350, 113563]
Posted by: Guest on November-13-2021

Code answers related to "how to to iterate over dictionary"

Python Answers by Framework

Browse Popular Code Answers by Language