How can I create lists from a list of strings?
I have a list of strings such as: names = ['apple','orange','banana'] And I would like to create a list for each element in the list, that would be named exactly as the string: apple = [] orange = [] banana = [] How can I do that in Python? Answers: Thank you for visiting the … Read more