Let\'s say I have the following list of python dictionary:
dict1 = [{\'domain\':\'Ratios\'},{\'domain\':\'Geometry\'}]
and a list like:
You could do this:
for i, d in enumerate(dict1): d['count'] = list1[i]