Where is the documentation for ','?

Lawrence D’Oliveiro lawrencedo99 at gmail.com
Fri Sep 16 22:48:33 EDT 2016


On Saturday, September 17, 2016 at 2:05:49 PM UTC+12, Peng Yu wrote:
> x, y = y, x

It’s just syntactic sugar for

    (x, y) = (y, x)



More information about the Python-list mailing list