To remove an item from a list, we have two options. One is using del mylist[i] where i is the index. Other is call mylist.remove(i) method ...
確定! 回上一頁