Answers for "add to middle of list python"

0

add to middle of list python

# To insert an item at the 4th index of a list:

myList = [1, 2, 3, 4, 5]
insertThis = 5

# First argument is the index, second is what you wish to add.
myList.insert(3, insertThis)

print(myList)
# >>> [1, 2, 3, 5, 4, 5]
Posted by: Guest on June-06-2021

Code answers related to "add to middle of list python"

Python Answers by Framework

Browse Popular Code Answers by Language