up vote 3 down vote favorite
share [g+] share [fb]

I want to do something like String.Format ("[{0}, {1}, {2}]", 1, 2, 3) which returns:

[1, 2, 3]

How do I do this in Python?

link|improve this question

What is the question? – Niyaz Feb 5 '09 at 18:54
How do you print multiple values in python. – Joan Venge Feb 5 '09 at 18:55
feedback

5 Answers

up vote 25 down vote accepted

The previous answers have used % formatting, which is being phased out in Python 3.0+. Assuming you're using Python 2.6+, a more future-proof formatting system is described here:

http://docs.python.org/library/string.html#formatstrings

Although there are more advanced features as well, the simplest form ends up looking very close to what you wrote:

>>> "[{0}, {1}, {2}]".format(1, 2, 3)
[1, 2, 3]
link|improve this answer
4  
Also, in Python 3.1, there's no need to specify the ordinals. "[{}, {}, {}]".format(1, 2, 3) – Jason R. Coombs Feb 4 '10 at 17:01
feedback

You're looking for string formatting, which in python is based on the sprintf function in C.

print "[%s, %s, %s]" % (1, 2, 3)

For a complete reference look here: http://docs.python.org/library/stdtypes.html#string-formatting

link|improve this answer
1  
Thanks, what does the last % signifies? Also do you have to write the type of the way it should be printed like in C++ with s, d, f, etc? – Joan Venge Feb 5 '09 at 19:01
Yep. int = %d, float = %f (and there's precision, so look at the reference) – Nick Stinemates Feb 5 '09 at 21:55
feedback

You can do it three ways:


Use Python's automatic pretty printing:

print [1, 2, 3]   # Prints [1, 2, 3]

Showing the same thing with a variable:

numberList = [1, 2]
numberList.append(3)
print numberList   # Prints [1, 2, 3]


Use 'classic' string substitutions (ala C's printf). Note the different meanings here of % as the string-format specifier, and the % to apply the list (actually a tuple) to the formatting string. (And note the % is used as the modulo(remainder) operator for arithmetic expressions.)

print "[%i, %i, %i]" % (1, 2, 3)

Note if we use our pre-defined variable, we'll need to turn it into a tuple to do this:

print "[%i, %i, %i]" % tuple(numberList)


Use Python 3 string formatting. This is still available in earlier versions (from 2.6), but is the 'new' way of doing it in Py 3. Note you can either use positional (ordinal) arguments, or named arguments (for the heck of it I've put them in reverse order.

print "[{0}, {1}, {2}]".format(1, 2, 3)

Note the names 'one' ,'two' and 'three' can be whatever makes sense.)

print "[{one}, {two}, {three}]".format(three=3, two=2, one=1)
link|improve this answer
1  
For completeness, using the "classic" style, you can also do: print "[%(one)i, %(two)i, %(three)i]" % {'three':3,'two':2,'one':1} – DrAl Aug 10 '10 at 11:03
feedback

You haven't formulated yourself very commendably, but I'll venture a guess this is what you're looking for:

foo = "Hello"
bar = "world"
baz = 2
print "%s, %s number %d" % (foo, bar, baz)
link|improve this answer
Thanks, what does the last % signifies? Also do you have to write the type of the way it should be printed like in C++ with s, d, f, etc? – Joan Venge Feb 5 '09 at 18:58
I'll refer you to DNS' answer above which is superior: stackoverflow.com/questions/517355/string-formatting-in-python/… – JosefAssad Feb 5 '09 at 19:43
feedback

Your Answer

 
or
required, but never shown

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