Python Accessing Values in A List of Dictionaries

If you’re just looking for values associated with ‘Name’, your code should look like:

for d in thisismylist:
    print d['Name']

Leave a Comment