Python string concatenation example

Question:
Suppose the following strings are defined:

topping1 = "Peanut Butter"
topping2 = "Jelly"
Use string concatenation to create the string "Peanut Butter & Jelly" that’s assigned to a variable named sandwich.

Answer:
sandwich = topping1 + " & " + topping2