Merge Two Lists
Merge two lists into a single list.
BeginnerTopic: List Programs
Python Merge Two Lists Program
This program helps you to learn the fundamental structure and syntax of Python programming.
# Program to merge two lists
list1 = input("Enter first list elements: ").split()
list2 = input("Enter second list elements: ").split()
merged = list1 + list2
print("Merged list:", merged)Output
Enter first list elements: 1 2 Enter second list elements: 3 4 Merged list: ['1', '2', '3', '4']
Understanding Merge Two Lists
We use list concatenation (+) to create a new merged list.
Note: To write and run Python programs, you need to set up the local environment on your computer. Refer to the complete article Setting up Python Development Environment. If you do not want to set up the local environment on your computer, you can also use online IDE to write and run your Python programs.