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.

Technology CommunityCategory: PythonGiven 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.
VietMX Staff asked 3 years ago
a, b = b, a