Question: Write a program that merges two lists. Let L1 = [1, 2, 3] and L2 = [10, 20, 30] be two lists. Write a program
Write a program that merges two lists. Let L1 = [1, 2, 3] and L2 = [10, 20, 30] be two lists. Write a program that merges L1 with L2. After the merge, contents of L1 will be: L1=[1, 2, 3, 10, 20 30] DO NOT USE LIBRARY FUNCTIONS. Do not access list elements directly. Use basic list functions instead use retrieve(5), do not use L[5] use insert(1, 1), do not use L[1] = 1 etc.
Step by Step Solution
3.40 Rating (147 Votes )
There are 3 Steps involved in it
Pyhton program to merge two lists python program to merge two lis... View full answer
Get step-by-step solutions from verified subject matter experts
