I am creating a code where I ask users to give certain information. Based on the number of input items, I want to create empty lists that will be used for a for-loop later on.
For instance,
user_info=[19,20,21,22,23]
Desired output:
19=[], 20=[], 21=[], 22=[], 23=[]
Since the first letter couldn't be number, I wouldn't care if the list name is alphabets.
a=[],b=[],c=[],d=[],e=[]
Thanks!