python dict with a list of dictionaries code example
Example 1: How are Python dictionaries different from Python lists?
list1 = ["a", "b" ,"c"] # a bunch of things
dictionary1 = {"a":1, "b":2, "c":3} # like a list but each part of it has an associated extra bit
Example 2: python list of dictionaries to list
[d['value'] for d in l]