Computer Science, asked by jayakrishna384, 1 month ago

Which function will remove an item from a list

Answers

Answered by ritika123489
0

Explanation:

The remove() method removes the first matching element (which is passed as an argument) from the list. The pop() method removes an element at a given index, and will also return the removed item. You can also use the del keyword in Python to remove an element or slice from a list.

Similar questions