how to remove entire list in python code example
Example 1: how to delete an item from a list python
myList = ['Item', 'Item', 'Delete Me!', 'Item']
myList.pop(2) # myList now equals ['Item', 'Item', 'Item']
Example 2: how to remove a element from list in python and print it
pop(n) removes the element at the given index number and can print it