Question: use python Write a function removeFirstAndLast(list) that takes in a list as an argument and remove the first and last elements from the list. The

use python
Write a function removeFirstAndLast(list) that takes in a list as an argument and remove the first and last elements from the list. The function will return a list with the remaining items. Examples >>> removeFirstAndLast([1, 4]) [] >>> removeFirstAndLast(range(1, 20, 3)) [4, 7, 10, 13, 16] >>> removeFirstAndLast([1]) []
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
