I know this is possible with list comprehension but I can\'t seem to figure it out. Currently I have a list of dictionaries like so:
[ {\'field1\': \'a\', \'fie
I'm not sure what ordering you want, but for no order you could do:
list_ = [list(_.values()) for _ in dict_list]