Write a function called removeFirst that accepts a list as a parameter. It should
remove the value at index 0 from the list.
Note that it should not return anything (returns None). Note that this function must
actually modify the list passed in, and not just create a second list when the first item
is removed. You may assume the list you are given will have at least one element.
Answers
Answered by
0
Answer:
you may assume the list you are given will have at least one elements
Explanation:
yes it is right explanation of the given sentence
Similar questions