Question: Create a function called splice that takes 2 lists as arguments. The function should take 2 arguments, both lists and return a new list that

Create a function called splice that takes 2 lists as arguments. The function should take 2 arguments, both lists and return a new list that is each list spliced together. (8 Points) Calling splice with 1st-splice ( [1, 2], [3, 4] ) st would be the new list [1,3,2,4 The lists passed to splice may not contain the same number of elements. 1st= splice ( [1, 2], [5] ) st would be the new list [1,5,2 1st-splice ( [1, 2], [5, 9, 8, 10] ) st would be the new list [1,5,2,9,8,10
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
