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)
|
You can use advanced string formatting, available in Python 2.6 and Python 3.x:
|
||||
|
|
You may like to have a read of this to get an understanding: String Formatting Operations. |
|||||||||||
|
|
You can use the dictionary type of formatting:
|
|||||||||||||
|
|
Depends on what you mean by better. This works if your goal is removal of redundancy.
|
|||
|
|
|
||||
|
%string operator will be "deprecated on Python 3.1 and removed later at some time" docs.python.org/release/3.0.1/whatsnew/… now I wonder what is the most advised way for both version compatibility and security. – Cawas Apr 30 '10 at 0:34str.format(). Ex.:query = "SELECT * FROM {named_arg}"; query.format(**kwargs), wherequeryis the format string andkwargsis a dictionary with keys matching thenamed_args in the format string. – Edwin May 14 '12 at 2:36{0},{1},{2}and so on correspond to tuple indices0,1, and2, respectively. Alternatively, it's also possible to name the args (like{named_arg}) and set each one in the format method, like so:'Hi {fname} {lname}!'.format(fname='John', lname='Doe')– Edwin May 16 '12 at 4:07