0 votes
in Python Flask by
Given variables a and b, switch their values so that b has the value of a, and a has the value of b without using an intermediary variable.

1 Answer

0 votes
by

a, b = b, a

...