1myList.remove(item) # Removes first instance of "item" from myList
2myList.pop(i) # Removes and returns item at myList[i]
1>>> a=[1,2,3]
2>>> a.remove(2)
3>>> a
4[1, 3]
5>>> a=[1,2,3]
6>>> del a[1]
7>>> a
8[1, 3]
9>>> a= [1,2,3]
10>>> a.pop(1)
112
12>>> a
13[1, 3]
14>>>