Python is doing string multiplication where I would expect it to do numeric multiplication, and I don't know why.

>>> print('%d' % 2 * 4)
2222
>>> print('%d' % (2 * 4))
8

Even forcing the type to integer does nothing. (I realize this is redundant, but it's an idiot-check for me:

 >>> print('%d' % int(2) * int(4))
 2222

Obviously I solved my problem (adding the parenthesis does it) but what's going on here? If this is just a quirk I have to remember, that's fine, but I'd rather understand the logic behind this.

link|improve this question

feedback

3 Answers

up vote 10 down vote accepted

You are experiencing operator precedence.

In python % has the same precedence as * so they group left to right.

So,

print('%d' % 2 * 4)

is the same as,

print( ('%d' % 2) * 4)

Here is the python operator precedence table.

Since it is difficult to remember operator precedence rules, and the rules can be subtle, it is often best to simply use explicit parenthesis when chaining multiple operators in an expression.

link|improve this answer
Not as classy to accept my own answer, so Karl gets the check for most succinct and correct answer. – Schof Aug 21 '09 at 2:09
"so they group left to right" specifically, that's because the "", "%" group of operators have left-associativity. "*" groups right to left – newacct Aug 21 '09 at 5:50
"You are experiencing operator precedence." Is that something to see a doctor for? – balpha Aug 21 '09 at 10:41
feedback

Ah, I think I figured it out. Just after I posted the message, of course. It's an order-of-operations thing. The string formatting is being calculated, and the resulting string is being string multiplied against the last operand.

When I type:

>>> print '%d' % 2 * 4
2222

It turns out to be as if I had specified the precedence this way:

>>> print ('%d' % 2) * 4
2222
link|improve this answer
feedback

Look at this code snippet. The same issue is occurring but I don't know why because according to the operator precedence table linked above, the + operator has precedence over the string formatting operator %.

for i in range(4):
    str = "%d " % i+1
    print str,

I am using python 2.6.1

link|improve this answer
You're reading the table the wrong way. % has higher precedence than +. – Schof Apr 24 '11 at 4:35
not sure how I am reading it wrong: docs.python.org/reference/expressions.html#summary Addition and subtraction is on the line immediately higher in the table then Multiplication, division, remainder. The footnote 8) says: "The % operator is also used for string formatting; the same precedence applies." – Ivan Novick Apr 25 '11 at 1:27
@ivan-novick "The following table summarizes the operator precedences in Python, from lowest precedence (least binding) to highest precedence (most binding)." So +, which is listed earlier in the list has a LOWER precedence than %, which is listed later. – Schof May 2 '11 at 21:30
feedback

Your Answer

 
or
required, but never shown

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