This is not a real world problem. Just out of curiosity question.
I would like to store the out put from a for loop to a numbered list. So, Basically my doubt is how I can create a numbered or ordered lists in a loop?
Pseudo-code:
y = range(26)
for i in y:
i = a new list named as 'a'
At the end I should have 26 lists, like below:
a = [] b = [] : : z = []