I want to work through a list of n entries to create n new lists, naming the new lists after each n. My code would be something like:
nice_list = ("entry1", "entry2")
for n in nice_list:
n_list = ()
but i know that this will give me n_list = () overridden n times. but the output i want is like:
entry1_list = ()
entry2_list = ()
I don't know how to extract the information that n represents to be able to name my lists automatically.
TIA