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>
--
http://mail.python.org/mailman/listinfo/python-list
