Answers for "append value to list in dictinary value python"

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

Code answers related to "append value to list in dictinary value python"

Python Answers by Framework

Browse Popular Code Answers by Language