x=["a","b","c","d","e"]
for i in x:
ai=[i]
print(ai)
print(ae)
So for the above code, I am consufed, how can I call back these kind of lists. I mean for each i in the list x. I am defining "ai". Since last step is finishing with "e" what is the list a"e", or what become of my list created with a and e(from the list). How can I call a"e"=['e']? it is clearly not a"e" I tried to call as print(ae),print(a'e'), print(a"e") etc...