Python 3.7 question: I need to make 120 dictionaries from a list of 120 unique names (which are strings). Once these dictionaries are created, i will fill them with data. My question is: Is there a way i can loop through the list of 120 strings and create 120 empty dictionaries, each of which has that string for its name?
Thank you.