7. Define two variables first and second so that first = “Jimmy” and second = “Johny”. Write a short Python code segment that swaps the values assigned to these two variables and prints the results.
# Code first = ‘Jimmy’ second = ‘Johny’ print(first, second) # Jimmy Johny first, second = second, first # swaps the variables print(first, second) # Johny Jimmy