Python List insert() Method With Examples
Last Updated :
12 Aug, 2024
Python List insert() method inserts an item at a specific index in a list.
Example:
Python
# creating a list
fruit = ["banana","cherry","grape"]
fruit.insert(1,"apple")
print(fruit)
Output['banana', 'apple', 'cherry', 'grape']
Definition and Use of List insert() Method
List insert() method in Python is very useful to insert an element in a list. What makes it different from append() is that the list insert() function can add the value at any position in a list, whereas the append function is limited to adding values at the end.
It is used in editing lists with huge amount of data, as inserting any missed value in that list is made very easy with this Python function.
List insert() Method Syntax
list_name.insert(index, element)
Parameters:
- index: the index at which the element has to be inserted.
- element: the element to be inserted in the list.
Return : The insert()
method returns None
. It only updates the current list.
How to Insert into Python List at Index?
Using Python list insert() function you can easily insert an item to a given index in Python list.
Example
Python
# making a list
score = [43,45,99,76]
#inserting a new score at third position
score.insert(2, 45)
#printing new list
print(score)
Output[43, 45, 45, 99, 76]
More Examples on Python List insert() Method
Here is another examples to depict Python list insert at index 0:
Python
list = ['Sun', 'rises', 'in', 'the', 'east']
list.insert(0, "The")
print(list)
Output['The', 'Sun', 'rises', 'in', 'the', 'east']
Let’s see some of the scenarios with the python list insert() function to clearly understand the workings of the insert() function.
1. Inserting an Element to a specific index into the List
Here, we are inserting 10 at the 5th position (4th index) in a Python list.
Python
list1 = [ 1, 2, 3, 4, 5, 6, 7 ]
# insert 10 at 4th index
list1.insert(4, 10)
print(list1)
Output[1, 2, 3, 4, 10, 5, 6, 7]
2. Error of insert() Method
Here, we are inserting 1 at the 10th position in a Python list, we will get an error if we try to insert anything in a string because the string doesn’t have attribute insert().
Python
# attribute error
string = "1234567"
string.insert(10, 1)
print(string)
Output:
Traceback (most recent call last):
File "/home/2fe54bd8723cd0ae89a17325da8b2eb5.py",
line 7, in
string.insert(10, 1)
AttributeError: 'str' object has no attribute 'insert'
3. Insertion in a List Before any Element
In the parse of Python List Insert here, we are inserting 13 at the 3rd position before 3 in a Python list.
Python
# Python3 program for Insertion in a list
# before any element using insert() method
list1 = [ 1, 2, 3, 4, 5, 6 ]
# Element to be inserted
element = 13
# Element to be inserted before 3
beforeElement = 3
# Find index
index = list1.index(beforeElement)
# Insert element at beforeElement
list1.insert(index, element)
print(list1)
Output[1, 2, 13, 3, 4, 5, 6]
4. Inserting a Tuple into the List
Here we are inserting a tuple in a list using the insert() function in Python.
Python
list1 = [ 1, 2, 3, 4, 5, 6 ]
# tuple of numbers
num_tuple = (4, 5, 6)
# inserting a tuple to the list
list1.insert(2, num_tuple)
print(list1)
Output[1, 2, (4, 5, 6), 3, 4, 5, 6]
5. Insert an Element to the Beginning of a List
In this example, we are inserting the “orange” string at the 0 index of the fruits list.
Python
fruits = ['apple', 'banana', 'cherry']
fruits.insert(0, 'orange')
print(fruits)
# Output: ['orange', 'apple', 'banana', 'cherry']
Output['orange', 'apple', 'banana', 'cherry']
6. Inserting an Element at the end of the List
In this example, we are inserting the “cherry” at the end of the list.
Python
fruits = ['apple', 'banana', 'cherry']
fruits.insert(-1, 'orange')
print(fruits)
# Output: ['apple', 'banana', 'orange', 'cherry']
Output['apple', 'banana', 'orange', 'cherry']
7. Inserting a dictionary to a list in Python
Here we are inserting a dictionary in a list using the insert() function in Python.
Python
my_list = [{'name': 'Alice', 'age': 30},
{'name': 'Bob', 'age': 25}]
new_dict = {'name': 'Charlie', 'age': 40}
my_list.append(new_dict)
print(my_list)
Output[{'name': 'Alice', 'age': 30}, {'name': 'Bob', 'age': 25}, {'name': 'Charlie', 'age': 40}]
8. Python Insert List in Another List
Here we are inserting a list in a list using the insert() function in Python.
Python
list1 = [1, 2, 3]
list2 = [4, 5, 6]
list1=list1+list2
print(list1)
9. Insert elements of a set to a list in Python
Here we are inserting a set in a list using the insert() function in Python.
Python
list1 = [1, 2, 3]
s= {4,5,6}
list1.insert(3,s)
print(list1)
Output[1, 2, 3, {4, 5, 6}]
Go to the below articles to get more details information about Python Insert() Function
In the above article, we have discussed the Python list insert() method and its parameters with suitable examples. Python insert() function is very useful when dealing with big data.
We hope this article taught you about how to use insert() in Python.
Python List insert() Method With Examples – FAQS
What is the insert()
Method in Python?
The insert()
method in Python allows you to add an element to a specific position within a list. It takes two arguments: the index where the element should be inserted and the element itself.
What is the Difference Between insert()
and append()
Methods of a List?
insert()
method adds an element at a specified index.append()
method adds an element to the end of the list, effectively equivalent to list.insert(len(list), element)
.
What is the Use of append()
Function in List?
The append()
function is used to add a single element to the end of a list. It does not return a new list; instead, it modifies the original list.
What is the Difference Between append()
and extend()
Methods in Python Lists?
append()
adds its argument as a single element to the end of a list.extend()
takes an iterable as an argument and appends each of its elements to the list, effectively flattening the input iterable one level.
What is items()
Method in Python?
The items()
method in Python is used with dictionaries to return a view object that displays a list of dictionary’s key-value tuple pairs. For example, dict.items()
allows you to loop through both keys and values in a dictionary simultaneously.
Similar Reads
Python List methods
Python list methods are built-in functions that allow us to perform various operations on lists, such as adding, removing, or modifying elements. In this article, weâll explore all Python list methods with a simple example. List MethodsLet's look at different list methods in Python: append(): Adds a
3 min read
Python List append() Method
append() method in Python is used to add a single item to the end of list. This method modifies the original list and does not return a new list. Let's look at an example to better understand this. [GFGTABS] Python a = [2, 5, 6, 7] # Use append() to add the element 8 to the end of the list a.append(
3 min read
Python List extend() Method
In Python, extend() method is used to add items from one list to the end of another list. This method modifies the original list by appending all items from the given iterable. Using extend() method is easy and efficient way to merge two lists or add multiple elements at once. Letâs look at a simple
2 min read
Python List index() - Find Index of Item
In this article, we are going to explore how to find the index of an element in a list and explore different scenarios while using the list index() method. Letâs take an example to find the index of an Item using the list index method. list index() method searches for a given element from the start
3 min read
Python List max() Method
Python list max() function returns the maximum value present in the list. Example: [GFGTABS] Python #creating a list rand = [2,3,6,1,8,4,9,0] #printing max element print(max(rand)) [/GFGTABS]Output9 Definition of List max() Functionmax() function in Python finds and returns the largest element in th
6 min read
Python min() Function
Python min() function returns the smallest of the values or the smallest item in an iterable passed as its parameter. Example: Find Python min integer from the list [GFGTABS] Python numbers = [23,25,65,21,98] print(min(numbers)) [/GFGTABS]Output 21Python min() Function Syntaxmin(a, b, c, ..., key=fu
4 min read
How To Find the Length of a List in Python
The length of a list refers to the number of elements in the list. There are several methods to determine the length of a list in Python. In this article, we'll explore different methods to find the length of a list. The simplest and most common way to do this is by using the len() function. Let's t
3 min read
Python List pop() Method
The pop() method is used to remove an element from a list at a specified index and return that element. If no index is provided, it will remove and return the last element by default. This method is particularly useful when we need to manipulate a list dynamically, as it directly modifies the origin
2 min read
Python List remove() Method
Python list remove() function removes the first occurrence of a given item from list. It make changes to the current list. It only takes one argument, element we want to remove and if that element is not present in the list, it gives ValueError. Example: [GFGTABS] Python a = ['a', 'b
4 min read
Python List Reverse()
The reverse() method is an inbuilt method in Python that reverses the order of elements in a list. This method modifies the original list and does not return a new list, which makes it an efficient way to perform the reversal without unnecessary memory uses. Let's see an example to reverse a list us
2 min read