special operator =+
Fredrik Lundh
fredrik at pythonware.com
Thu Dec 15 17:45:22 EST 2005
More information about the Python-list mailing list
Thu Dec 15 17:45:22 EST 2005
- Previous message (by thread): special operator =+
- Next message (by thread): special operator =+
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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>
- Previous message (by thread): special operator =+
- Next message (by thread): special operator =+
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list