Python integer incrementing with ++
- by Znarkus
I've always laughed to myself when I looked back at my VB6 days, "What modern language doesn't allow incrementing with double plus signs?":
number++
To my surprise I can't find anything about this in the Python docs. Must I really subject myself to number = number + 1? Doesn't people use the ++/-- notation?
:-(