how to take things out of a list python 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: drop an intex in a list python
listOfnum.remove()