I have 5 lists named l1, l2, l3, l4 and l5:
l1 = [1,2]
l2 = [3,4]
l3 = [5,6]
l4 = [7,8]
l5 = [9,10]
If I wanted to create a new object A as a list of lists, I could easily do this:
A = []
A.append(l1)
A.append(l2)
A.append(l3)
and so forth.... and A will look like this:
[[1,2],[3,4],[5,6],[7,8],[9,10]]
But can I use a for loop to make this easier?
Can I try:
A = []
For q in range(1,6):
temp = 'l' + str(q)
What do I do next? temp is a string that essentially concatenates 'l' with number from the for loop.
So it looks like 'l1', 'l2', 'l3'
But if I use
A.append(temp)
inside the loop, the output list will look like a list of strings ['l1', 'l2', 'l3', ....]
I guess I'm confused because I don't know how to take a string, and then say, I don't want the string 'l1', I want to return the list that is variable l1. I guess I'm trying to figure out if somehow, I had in my global name space variables named l1, l2, l3 all the way to l10000, how could I write code to make a new list that is a list of all the lists l1, l2, l3 and so forth.
A = [l1,l2,l3,l4,l5,l6]. Can't get much more concise than that. – Kevin Jan 26 at 15:31