List Methods myList.append(x) -- Add x to end of myList myList.sort() -- Sort myList in ascending order myList.reverse() -- Reverse myList myList.index(s) -- Returns position of first x myList.insert(i,x) -- Insert x at position i myList.count(x) -- Returns count of x myList.remove(x) -- Deletes first occurrence of x myList.pop(i) -- Deletes and return ith element x in myList -- Membership check (sequences)