In the lesson, we talked about swapping the values referenced by two variables. Which of the following can be used to accomplish the task given:x = ‘100’ y = hundred code example
Example 1: swapping in python
x = 5
y = 10
x, y = y, x
print("x =", x)
print("y =", y)
Example 2: code to swap in python
a=5
b=10
a,b=b,a #swapped