Tagged Questions

8
votes
5answers
259 views

Why does “**” bind more tightly than negation?

I was just bitten by the following scenario: >>> -1 ** 2 -1 Now, digging through the Python docs, it's clear that this is intended behavior, but why? I don't work with any other languages ...
3
votes
3answers
1k views

Python String Formatting And String Multiplication Oddity

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 ...
2
votes
4answers
534 views

Modulo and order of operation in Python, Zed Shaw examples

In Zed Shaw's "Learn Python the Hard Way" http://learnpythonthehardway.org (page 15-16) he has an example exercise # 3 print "Roosters", 100 - 25 * 3 % 4 the result is 97 (try it!) I cannot for the ...