special operator =+

Fredrik Lundh fredrik at pythonware.com
Thu Dec 15 17:45:22 EST 2005


Kenny Nguyen wrote:

> Does anyone know the operator "=+"?

in what language?  there is no "=+" operator in Python.  you can
type e.g.

    a =+ 10

but that's the same as

    a = (+10)

</F>






More information about the Python-list mailing list