first = "apple" second = "banana" # print the out... print(f"First: {first} |Second {second}") # now switch them first, second = second, first print("I've switched things around...") print(f"First: {first} | Second {second}")