5

When I wrote count++ in Python and got syntax error. Darn!!! I just applied Java and C syntax again!

Comments
  • 0
    Python does support the += and more general [operand]= style, though. And operator overloading, pretty cool stuff.

    Do any other languages support Python style operator overloading?
  • 0
    @sheeponmeth Java and C++ also supports +=, that's why I always wonder why Python doesn't support ++
Add Comment