EN
Python - insert list items at specific position
0 points
In this article, we would like to show you how to insert list items at specific position in Python.
Quick solution:
xxxxxxxxxx
1
my_list = ['A', 'C']
2
3
my_list.insert(1, 'B')
4
5
print(my_list) # ['A', 'B', 'C']
In this example, we use positive indexing to insert B
character at index 1
.
xxxxxxxxxx
1
my_list = ['A', 'C']
2
3
my_list.insert(1, 'B')
4
5
print(my_list) # ['A', 'B', 'C']
Output:
xxxxxxxxxx
1
['A', 'B', 'C']
In this example, we use negative indexing to insert B
character at index -1
(index 1 starting from the end).
xxxxxxxxxx
1
my_list = ['A', 'C']
2
3
my_list.insert(-1, 'B')
4
5
print(my_list) # ['A', 'B', 'C']
Output:
xxxxxxxxxx
1
['A', 'B', 'C']