I have a list of strings. I now want to create a list for each string within my original list. I don't want to hard code in the new lists.
For example if my list is my_list = ['Paul', 'Ringo', 'John', 'George'] I want to create 4 new lists, one for each string (Paul = [ ] Ringo = [ ] etc). Any ideas? Thanks!