How to Concatenate Two Lists

To concatenate (join) two lists, you can use the + operator in Python.

Example: Concatenating Two Lists

# Concatenating two lists
list1 = ["apple", "banana"]
list2 = ["cherry", "date"]
combined_list = list1 + list2
print(combined_list)

Output

["apple", "banana", "cherry", "date"]

Explanation: The + operator combines the two lists into a new list.