Hinzufügen zur Mitte der Liste 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]
Concerned Civet