what built in list method would you use to remove an item from a list code example
Example 1: how to delete an item from a list python
myList = ['Item', 'Item', 'Delete Me!', 'Item']
del myList[2] # myList now equals ['Item', 'Item', 'Item']
Example 2: python how to remove item from list
list.remove(item)