I have a list of dictionaries that all follow the same format. I want to alter the list of dictionaries to return just the values from all the objects like so.
[{"name": "Dwight"}, {"name": "Michael"}, {"name": "Jim"}] -> ["Dwight", "Michael", "Jim"]
I realize I can iterate through the list and grab the values from each object, but I was wondering if there's any easier/built in python way to do it. Any suggestions?