Python字典clear()方法

2019-10-16 23:05:41

Python字典clear()方法用於清空(或刪除)字典中的所有資料項。

語法

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

dict.clear()

引數

  • NA

返回值

  • 此方法不返回任何值。

範例

以下範例顯示clear()方法的用法 -

#!/usr/bin/python3

dict = {'Name': 'Maxsu', 'Age': 7}
print ("Start Len : %d" %  len(dict))

dict.clear()
print ("End Len : %d" %  len(dict))

當執行上面的程式,它產生以下結果 -

Start Len : 2
End Len : 0