How to Add Element at Specific Index in Python List?

By Hardik Savani October 30, 2023 Category : Python

Hi,

In this example, you will learn python list add element at index. This tutorial will give you simple example of how to add element at specific index in python list. you can understand a concept of how to add element at particular index in list python. Here you will learn python list add item at index.

There are many ways to add elements at a specific index to a python list. i will give you two examples using insert() method and list key to add element at specific position in 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 element with specific index
myList.insert(2, "New Elem")
  
print(myList)

Output:

[1, 2, 'New Elem', 3, 4]

Example 2:

main.py

myList = [1, 2, 3, 4]
  
# Add new element with specific index
myList[2:2] = ["New Elem"]
  
print(myList)

Output:

[1, 2, 'New Elem', 3, 4]

I hope it can help you...

Tags :
Shares