myList = ['Item', 'Item', 'Delete Me!', 'Item'] myList.pop(2) # myList now equals ['Item', 'Item', 'Item']