Dave Angel <da...@ieee.org> writes: > Python allows multiple assignments in the same statement, but they're > all to the same object.
Unless they are to different objects: a, b = 1, 2 -- Arnaud -- http://mail.python.org/mailman/listinfo/python-list
Dave Angel <da...@ieee.org> writes: > Python allows multiple assignments in the same statement, but they're > all to the same object.
Unless they are to different objects: a, b = 1, 2 -- Arnaud -- http://mail.python.org/mailman/listinfo/python-list