Swap values between two variables

Use unpacking to swap the values of the variables one and two.
one = 1 two = 2 # add your code here...
print(one) # expected: 2 print(two) # expected: 1
Python
Setting up Python environment...
Output