1my_list = [1,2,4,6,7]
2
3del my_list[1] # Removes index 1 from the list
4print my_list # [1,4,6,7]
5my_list.remove(4) # Removes the integer 4 from the list, not the index 4
6print my_list # [1,6,7]
7my_list.pop(2) # Removes index 2 from the list
1array = ["red", "green", "blue"]
2del array[0] # this deletes the first element, red, in the array