83. Problem to get a list after removing n elements from both sides.

In this Python list program, we will take a user input as a list and get a list after removing n elements from both sides with the help of the below-given steps.

Removing n elements from a list:

STeps to solve the program
  1. Take a list as input.
  2. Print the list after removing n elements from both sides using indexing.
  3. Print the result to see the output.
				
					#Input list
list1 = [2, 5, 7, 9, 3, 4]

#Printing output
print("Remove 1 element from left", list1[1:])
print("Remove 1 element from the right", list1[:-1])
print("Remove 2 elements from left" , list1[2:])
print("Remove 2 elements from right", list1[:-2])
				
			

Output :

				
					Remove 1 element from left [5, 7, 9, 3, 4]
Remove 1 element from the right [2, 5, 7, 9, 3]
Remove 2 elements from left [7, 9, 3, 4]
Remove 2 elements from right [2, 5, 7, 9]
				
			

Related Articles

Get the list of prime numbers in a given list

Create a dictionary with lists

Leave a Comment