I would like to convert each item of a list of strings into an empty list object with the string as list name.
Input:
list_items = ["string1","string2"]
Output: 2 empty lists called "string1" and "string2
print(string1) -> []
print(string2) -> []
Thank you!