Python列表remove()
方法用於從列表中刪除給定的物件。
語法
以下是remove()
方法的語法 -
list.pop(obj = list[-1])
引數
返回值
以下範例顯示了remove()
方法的用法。
#!/usr/bin/python3
list1 = ['physics', 'Biology', 'chemistry', 'maths']
list1.remove('Biology')
print ("list now : ", list1)
list1.remove('maths')
print ("list now : ", list1)
當執行上面的程式,它產生以下結果 -
list now : ['physics', 'chemistry', 'maths']
list now : ['physics', 'chemistry']