86. Problem to insert sublist into the list at specific index.

In this Python list program, we will take a user input as a list and insert sublist into the list at specific index with the help of the below-given steps.

Insert sublist in a list:

Steps to solve the program
  1. Take a list as input.
  2. Insert a sublist into the given list at a specific index using the insert() function.
  3. Print the list to see the output.
				
					#Input list
list1 = [4, 6, 8, 2, 3, 5]

#Inserting list
list1.insert(3,[5, 2, 6])

#Printing output
print(list1)
				
			

Output :

				
					[4, 6, 8, [5, 2, 6], 2, 3, 5]
				
			

Related Articles

Remove duplicate items from the list using set

Calculate bill per fruit purchased from a list

Leave a Comment