write the method to perform the following. a - delete the given element from list L
Answers
Answered by
2
1. del[a : b] :- This method deletes all the elements in range starting from index ‘a’ till ‘b’ mentioned in arguments.
2. pop() :- This method deletes the element at the position mentioned in its arguments.
Similar questions