myList = ['f','a','s'] · #always removes last element of the list · myList.pop() · #pops item at index specified · myList.pop(1) · del myList[0] · #remove item by ...
確定! 回上一頁