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