How to Add Multiple Elements to a List in Python?
Hello,
This article will give you an example of how to add multiple elements to a list in python. let’s discuss how to insert multiple elements in list in python. you can understand the concept of python list add multiple elements. This tutorial will give you a simple example of python list insert multiple elements. Let's see below example python add items of list to list.
There are many ways to add multiple items to a python list. i will give you three examples using extend() method, append() method and concat to insert multiple elements to python list. so let's see the below examples.
You can use these examples with python3 (Python 3) version.
let's see below a simple example with output:
Example 1:
main.py
myList = [1, 2, 3, 4] # Add new multiple elements to list myList.extend([5, 6, 7]) print(myList)
Output:
[1, 2, 3, 4, 5, 6, 7]
Example 2:
main.py
myList = [1, 2, 3, 4] # Add new multiple elements to list myList.append(5) myList.append(6) myList.append(7) print(myList)
Output:
[1, 2, 3, 4, 5, 6, 7]
Example 3:
main.py
myList = [1, 2, 3, 4] myList2 = [5, 6, 7] # Add new multiple elements to list newList = myList + myList2 print(newList)
Output:
[1, 2, 3, 4, 5, 6, 7]
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Count Number of Elements in a List in Python?
- How to Add Element to a List in Python?
- How to Find Average of List in Python?
- Python List Print All Elements Except First Example
- Python List Print All Elements Except Last Example
- How to Get Min Value from Python List?
- How to Convert List to Capitalize First Letter in Python?
- How to Get Max Value from Python List?
- How to Convert List to Uppercase in Python?
- Python Convert List into String with Commas Example
- How to Convert List to Lowercase in Python?
- How to Convert List into String in Python?