Remove an item from a Python list by its index

Question:
Which method would you use to remove an item from a list by its index?

  1. remove()
  2. delete()
  3. pop()
  4. clear()
Answer:
C - is the correct answer