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.

link|improve this question
2  
I suggest just using A = [l1,l2,l3,l4,l5,l6]. Can't get much more concise than that. – Kevin Jan 26 at 15:31
3  
There are no pointers in Python. I'm unsure of your intention; could you clarify it a bit? – Makoto Jan 26 at 15:31
3  
Admirably, so far everyone who gave in to the temptation to mention a way you could do this also said that you shouldn't. Please listen to the anti-recommendation and use a different data structure instead. If the number after the "l" is meaningful, then it's worth being connected to the data in a more direct way (and if it's not, then it doesn't matter anyhow.) – DSM Jan 26 at 15:52
LOL! (List Of Lists) – julio.alegria Jan 26 at 16:50
"I have 5 lists named l1, l2, l3, l4 and l5" - why? – Karl Knechtel Jan 26 at 20:06
feedback

3 Answers

For 5 lists just create a list:

A = [l1, l2, l3, l4, l5]

You could do it with a loop, but that will be messy. Something like:

A = [ vars()['l'+str(id)] for id in range(1,6) ]

Better would be to store your lists in something like a list or dictionary to begin with. That keeps them out of the way of other variables so you can easily refer to them as a group.

link|improve this answer
Thank you Duncan. This was very helpful. I will read up on the vars() documentation, but I think I can see that it will work using this. Obviously for small lists, I wouldn't use a for loop to generate this list of lists, but if I have l1 to l10000, then I wouldn't want to do that!!! – Robert Tsai Jan 26 at 15:42
1  
@RobertTsai, I can't comprehend how you would generate 10000 separate variables without putting them in a list to begin with. – Mark Ransom Jan 26 at 15:50
2  
Please don't use vars() like this. Take Duncan's last advice: use a single list to begin with. – Ned Batchelder Jan 26 at 15:50
@Rob: If you have lists from l1 to l10000 I guess there's some kind of automaic procedure that produce such lists so you should also be able to list them all directly. – Rik Poggi Jan 26 at 15:54
@MarkRansom thanks, corrected. – Duncan Jan 26 at 16:51
feedback

If you have more lists, try to add them to a "list list" on creation.

Otherwise, as stated in other answers, create the list:

A = [l1,l2,l3,l4,l5]
link|improve this answer
1  
He asked for a list of lists, not one long list. – Duncan Jan 26 at 15:35
That's right. Mea culpa. – Gregor Jan 26 at 15:37
feedback

Another hacky way, not recommended of course:

l0 = [1,]
l1 = [2,]
l2 = [3,]

why_do_this = "["
for i in xrange(3):
    why_do_this += 'l%s,'%i
why_do_this+=']'
result=eval(why_do_this)
print result

[[1], [2], [3]]
link|improve this answer
1  
-1: Don't give bad advice, even if you label it as bad advice. – Ned Batchelder Jan 26 at 15:51
this is some terrible coding – julio.alegria Jan 26 at 16:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.