I had a question on how python code can be formatted.
(q, a), b = divmod(b, a), a
y0, y1 = y1, y0 - q * y1
For something like above, how do the commas to demonstrate variables work? Can someone show how this code would look without the use of commas between y0 and y1, or the (q,a)? I know it must be some sort of way to optimize the code.