Answers for "insert dictionary into list based on value"

1

python append value to dictionary list

import collections

a_dict = collections.defaultdict(list) # a dictionary key --> list (of any stuff)
a_dict["a"].append("hello")

print(a_dict)
>>> defaultdict(<class 'list'>, {'a': ['hello']})

a_dict["a"].append("kite")

print(a_dict)
>>> defaultdict(<class 'list'>, {'a': ['hello', 'kite']})
Posted by: Guest on May-24-2021
-2

add key value in each dictonary in the list

result = [dict(item, **{'elem':'value'}) for item in myList]
Posted by: Guest on November-21-2021

Code answers related to "insert dictionary into list based on value"

Python Answers by Framework

Browse Popular Code Answers by Language