Python列表remove()方法

2019-10-16 23:06:08

Python列表remove()方法用於從列表中刪除給定的物件。

語法

以下是remove()方法的語法 -

list.pop(obj = list[-1])

引數

  • obj - 這是一個可選引數,要從列表中刪除的物件的索引。

返回值

  • 此方法不返回任何值,但從列表中刪除給定的物件。

範例

以下範例顯示了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']