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