Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I construct a string s in Python 2.6.5 which will have a varying number of %s tokens, which match the number of entries in list x. I need to write out a formatted string. The following doesn't work, but indicates what I'm trying to do. In this example, there are three %s tokens and the list has three entries.

s = '%s BLAH %s FOO %s BAR'
x = ['1', '2', '3']
print s % (x)

I'd like the output string to be:

1 BLAH 2 FOO 3 BAR

share|improve this question
Reworded the question slightly, as the original example had repeated "BLAH" text next to each number which made it look as though the number of "BLAH"s depended on the number, which of course is not the case. – SabreWolfy Sep 27 '11 at 11:59

2 Answers

up vote 13 down vote accepted
print s % tuple(x)

instead of

print s % (x)
share|improve this answer
(x) is the same thing as x. Putting a single token in brackets has no meaning in Python. You usually put brackets in foo = (bar, ) to make it easier to read but foo = bar, does exactly the same thing. – patrys Sep 27 '11 at 12:10
print s % (x) is what OP wrote, I was just quoting him/her. – infrared Sep 27 '11 at 12:12
I was just providing a language tip, not criticizing your answer (in fact I +1'd it). You did not write foo = (bar, ) either :) – patrys Sep 27 '11 at 12:18
I use the (x) notation for clarity; it also avoids forgetting the brackets if you later add additional variables. – SabreWolfy Sep 27 '11 at 12:27

You should take a look to the format method of python. You could then define your formatting string like this :

>>> s = '{0} BLAH {1} BLAH BLAH {2} BLAH BLAH BLAH'
>>> x = ['1', '2', '3']
>>> print s.format(*x)
'1 BLAH 2 BLAH BLAH 3 BLAH BLAH BLAH'
share|improve this answer
Python 2.6+ only. – agf Sep 27 '11 at 12:00
OP uses 2.6.5 -> ok – glglgl Sep 27 '11 at 12:01
The OP's problem is not the method but the format of the parameters. % operator only unpacks tuples. – patrys Sep 27 '11 at 12:02
This would make the construction of s more complex, as I would need to include incrementing numbers rather than simply %s for each position. s is built up in a number of different steps, so it's much easier to just include the %s token. – SabreWolfy Sep 27 '11 at 12:02
1  
@SabreWolfy If you construct it precedurally then you might find it easier to name your placeholders and use a dict to format the resulting string: print u'%(blah)d BLAHS %(foo)d FOOS …' % {'blah': 15, 'foo': 4}. – patrys Sep 27 '11 at 12:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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