vote up 1 vote down star

I have a list full of various bits of information that I would like to pass to several strings for inclusion via the new string format method. As a toy example, let us define

thelist = ['a', 'b', 'c']

I would like to do a print statement like print '{0} {2}'.format(thelist) and print '{1} {2}'.format(thelist)

When I run this, I receive the message IndexError: tuple index out of range; when mucking about, it clearly takes the whole list as a single object. I would, of course, rather it translate thelist to 'a', 'b', 'c'.

I tried using a tuple and received the same error.

What on Earth is this particular technique called? If I knew the name, I could have searched for it. "Expand" is clearly not it. "Explode" doesn't yield anything useful.

My actual use is much longer and more tedious than the toy example.

flag

2 Answers

vote up 2 vote down
'{0} {2}'.format(*thelist)

docs

link|flag
irrefragable answer – Rorick Mar 30 at 12:09
vote up 8 vote down

.format(*thelist)

It's part of the calling syntax in Python. I don't know the name either, and I'm not convinced it has one. See the tutorial.

It doesn't just work on lists, though, it works for any iterable object.

link|flag
+1: Quote the documentation. – S.Lott Mar 23 at 18:45
I knew you'd like that. :) – Devin Jeanpierre Mar 23 at 18:46
I think it's referred to as "unpacking". – regan Mar 23 at 18:49
@Devin: There is much similarity between binding some names via = operator and binding function parameters names on function call. – J.F. Sebastian Mar 23 at 18:53
You are correct. Which also means I linked to the wrong section (off by one). Corrected. – Devin Jeanpierre Mar 23 at 18:53
show 3 more comments

Your Answer

Get an OpenID
or

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