Login
Remember
Register
Ask a Question
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.
0
votes
asked
Jun 16, 2023
in
Python Flask
by
john ganales
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.
python-variables
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 16, 2023
by
john ganales
a, b = b, a
...