I have a list:
['Alice', 'Bob', 'Charlie']
I want to take each of these list values and make them their own separate dictionaries:
Alice = {}
Bob = {}
Charlie = {}
I need to be able to iterate over the list and do this programatically so that it's not hard-coded, and can be done on any arbitrary list.
Is there a way to do this?