Which statement correctly distinguishes two ways to delete an item from a Python list?
del items[value] deletes by value, while items.remove(index) deletes by position.
del items[value]
items.remove(index)
del items[index] deletes by position, while items.remove(value) deletes a specified value.
del items[index]
items.remove(value)
Both forms always delete every item in the list.
Both forms add an item at the end of the list.