49

In JavaScript, I can use splice to insert an array of multiple elements in to an array: myArray.splice(insertIndex, removeNElements, ...insertThese).

But I can't seem to find a way to do something similar in Python without having concat lists. Is there such a way? (There is already a Q&A about inserting single items, rather than multiple.)

For example myList = [1, 2, 3] and I want to insert otherList = [4, 5, 6] by calling myList.someMethod(1, otherList) to get [1, 4, 5, 6, 2, 3]

natevw
  • 16,807
  • 8
  • 66
  • 90
TheRealFakeNews
  • 7,512
  • 16
  • 73
  • 114

7 Answers7

108

To extend a list, you just use list.extend. To insert elements from any iterable at an index, you can use slice assignment...

>>> a = list(range(10))
>>> a
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> a[5:5] = range(10, 13)
>>> a
[0, 1, 2, 3, 4, 10, 11, 12, 5, 6, 7, 8, 9]
wjandrea
  • 28,235
  • 9
  • 60
  • 81
mgilson
  • 300,191
  • 65
  • 633
  • 696
  • 5
    This does the job, but doesn’t answer the actual question directly. The answer should have been something like `myList[1:1] = otherList`. – Manngo Mar 26 '22 at 03:10
  • @Manngo This does exactly what's asked and should be the accepted answer. (Though I don't know if, performance-wise, it's all same) – OverLordGoldDragon Jul 27 '23 at 19:49
5

Python lists do not have such a method. Here is helper function that takes two lists and places the second list into the first list at the specified position:

def insert_position(position, list1, list2):
    return list1[:position] + list2 + list1[position:]
RFV
  • 831
  • 8
  • 22
1

I'm not certain this question is still being followed but I recently wrote a short code that resembles what is being asked here. I was writing an interactive script to perform some analyses so I had a series of inputs serving to read in certain columns from a CSV:

X = input('X COLUMN NAME?:\n')
Y = input('Y COLUMN NAME?:\n')
Z = input('Z COLUMN NAME?:\n')
cols = [X,Y,Z]

Then, I brought the for-loop into 1 line to read into the desired index position:

[cols.insert(len(cols),x) for x in input('ENTER COLUMN NAMES (COMMA SEPARATED):\n').split(', ')]

This may not necessarily be as concise as it could be (I would love to know what might work even better!) but this might clean some of the code up.

0

The following accomplishes this while avoiding creation of a new list. However I still prefer @RFV5s method.

def insert_to_list(original_list, new_list, index):
    
    tmp_list = []
    
    # Remove everything following the insertion point
    while len(original_list) > index:
        tmp_list.append(original_list.pop())
    
    # Insert the new values
    original_list.extend(new_list)
    
    # Reattach the removed values
    original_list.extend(tmp_list[::-1])
    
    return original_list

Note that it's necessary to reverse the order of tmp_list because pop() gives up the values from original_list backwards from the end.

corvus
  • 556
  • 7
  • 18
0

The python equivalent of JavaScript

myArray.splice(insertIndex, removeNElements, ...insertThese) 

would be:

my_list[insert_index:insert_index + remove_n_elements] = insert_these
Bjorkegeek
  • 78
  • 1
  • 5
0
Modifying the solution shared by RFV in earlier post.
Solution:
list1=list1[:position] + list2 + list1[position:]
    
Ex: Trying to insert the list of items at the 3rd index(2 is used in code snippet as positive indexing starts from 0 in Python)

list1=[0,1,23,345.22,True,"Data"] 
print(type(list1))
print(list1)
list2=[2,3,4,5]
list1=list1[:2] + list2 + list1[2:]
print("After insertion the values are",list1)
    
Ouput for the above code snippet.
<class 'list'>
[0, 1, 23, 345.22, True, 'Data']
After insertion the values are [0, 1, 2, 3, 4, 5, 23, 345.22, True, 'Data']
  • 1
    As it’s currently written, your answer is unclear. Please [edit] to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Mar 12 '23 at 17:03
-1

use listname.extend([val1,val2,val,etc])

  • Thank you for contributing an answer. Would you kindly edit your answer to to include an explanation of your code? That will help future readers better understand what is going on, and especially those members of the community who are new to the language and struggling to understand the concepts. – STA Feb 03 '21 at 10:38
  • Same solution as in Corvus' answer. – Eric Aya Feb 03 '21 at 12:23