Why there are no ++ and -- operators in Python?
|
It's not because it doesn't make sense; it makes perfect sense to define "x++" as "x += 1, evaluating to the previous binding of x". If you want to know the original reason, you'll have to either wade through old Python mailing lists or ask somebody who was there (eg. Guido), but it's easy enough to justify after the fact: Simple increment and decrement aren't needed as much as in other languages. You don't write things like Since it's not needed nearly as often, there's much less reason to give it its own special syntax; when you do need to increment, It's not a decision of whether it makes sense, or whether it can be done--it does, and it can. It's a question of whether the benefit is worth adding to the core syntax of the language. Remember, this is four operators--postinc, postdec, preinc, predec, and each of these would need to have its own class overloads; they all need to be specified, and tested; it would add opcodes to the language (implying a larger, and therefore slower, VM engine); every class that supports a logical increment would need to implement them (on top of This is all redundant with |
|||||||||||
|
|
This is a myth from the folklore of computing: debunked by Dennis Ritchie as "historically impossible" as noted in the letters to the editors of Communications of the ACM July 2012 doi:10.1145/2209249.2209251 The C increment/decrement operators were invented at a time when the C compiler wasn't very smart and the authors wanted to be able to specify the direct intent that a machine language operator should be used which saved a handful of cycles for a compiler which might do a
instead of
and the PDP-11 even supported "autoincrement" and "autoincrement deferred" instructions corresponding to As compilers are smart enough to handle the high-level optimization tricks built into the syntax of C, they are just a syntactic convenience now. Python doesn't have tricks to convey intentions to the assembler because it doesn't use one. |
||||
|
|
|
I always assumed it had to do with this line of the zen of python:
x++ and x+=1 do the exact same thing, so there is no reason to have both. |
|||||||||||||
|
|
It was just designed that way. Increment and decrement operators are just shortcuts for |
|||
|
|
|
Of course, we could say "Guido just decided that way", but I think the question is really about the reasons for that decision. I think there are several reasons:
|
|||||
|
|
I'm very new to python but I suspect the reason is because of the emphasis between mutable and immutable objects within the language. Now, I know that x++ can easily be interpreted as x = x + 1, but it LOOKS like you're incrementing in-place an object which could be immutable. Just my guess/feeling/hunch. |
|||
|
|
Because, in Python, integers are immutable (int's += actually returns a different object). Also, with ++/-- you need to worry about pre- versus post- increment/decrement, and it takes only one more keystroke to write |
|||
|
|
|
Maybe a better question would be to ask why do these operators exist in C. K&R calls increment and decrement operators 'unusual' (Section 2.8page 46). The Introduction calls them 'more concise and often more efficient'. I suspect that the fact that these operations always come up in pointer manipulation also has played a part in their introduction. In Python it has been probably decided that it made no sense to try to optimise increments (in fact I just did a test in C, and it seems that the gcc-generated assembly uses addl instead of incl in both cases) and there is no pointer arithmetic; so it would have been just One More Way to Do It and we know Python loathes that. |
|||
|
|
|
I believe it stems from the Python creed that "explicit is better than implicit". |
|||
|
|
|
First, Python is only indirectly influenced by C; it is heavily influenced by tcl, which apparently does not have these operators, so it should not be any great surprise not to find them in Python either. Secondly, as others have said, increment and decrement are supported by Third, full support for a For example, while the C statement |
|||
|
|