Run Program ❯
Python Home
❯
Run Code
Change Orientation
# Define two lists fruits = ['apple', 'banana', 'mango'] vegetables = ['carrot', 'tomato', 'spinach'] # Concatenate the lists food = fruits + vegetables # Print the result print(food)