vote up 1 vote down star

I have a string of this form

s='arbit'
string='%s hello world %s hello world %s' %(s,s,s)

All the %s in string have the same value (i.e. s). Is there a better way of writing this? (Rather than listing out s three times)

flag

71% accept rate

4 Answers

vote up 8 vote down check

You can use advanced string formatting, available in Python 2.6 and Python 3.x:

s='arbit'
string='{0} hello world {0} hello world {0}'.format(s)
link|flag
vote up 3 vote down
>>> s='arbit'
>>> string='%(s)s hello world %(s)s hello world %(s)s' % {'s': s}
>>> print string
arbit hello world arbit hello world arbit
>>>

You may like to have a read of this to get an understanding: String Formatting Operations.

link|flag
Nice. Had forgotten about this. locals() will do as well. – Goutham Aug 4 at 3:50
@Goutham: Adam Rosenfield's answer might be better if you're Python version is up to date. – mhawke Aug 4 at 3:53
It is actually. Iam still getting used to the new string formatting operations. – Goutham Aug 4 at 3:57
even better, you can multuply the base string: '%(s)s hello world '*3 % {'s': 'asdad'} – dalloliogm Aug 4 at 12:04
vote up -1 vote down

Hello,

You can use the dictionary type of formatting:

s='arbit'
string='%(key)s hello world %(key)s hello world %(key)s' % {'key': s,}
link|flag
Seems to be very little point in providing this duplicate answer. Here's another one: '%(string_goes_here)s hello world %(string_goes_here)s hello world %(string_goes_here)s' % {'string_goes_here': s,}. There's practically an infinite number of possibilities. – mhawke Aug 4 at 4:06
mhawke: i posted the message before my browser reloads the page so i didn't know at that momment that the question was already answered. You don´t need to be rude man!!. – Lucas S. Aug 4 at 4:25
@Lucas: I suppose that it is possible that it took you 13 minutes to type in your answer :) and thanks for the down vote... much appreciated. – mhawke Aug 4 at 4:34
vote up 0 vote down

Depends on what you mean by better. This works if your goal is removal of redundancy.

s='foo'
string='%s bar baz %s bar baz %s bar baz' % (3*(s,))
link|flag

Your Answer

Get an OpenID
or

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