Python delitem() 函式介紹
Python delitem() 函式是用來刪除字典中的鍵值對,它是字典的一個方法,可以用來刪除字典中的特定鍵值對。
delitem() 函式的語法
delitem() 函式的語法如下:
dict.delitem(key)
參數說明:
- key – 要刪除的鍵值對的鍵。
delitem() 函式的範例
下面的範例展示了 delitem() 函式的用法:
# 定義一個字典 dict = { "name": "John", "age": 36, "country": "Norway" } # 刪除鍵值對 del dict["age"] # 顯示字典 print(dict)
執行上面的程式,得到以下結果:
{'name': 'John', 'country': 'Norway'}
從上面的結果可以看出,age 鍵值對已經被刪除了。
總結
Python delitem() 函式可以用來刪除字典中的特定鍵值對,它是字典的一個方法,可以用來刪除字典中的特定鍵值對。
delitem() 函式的語法如下:
dict.delitem(key)
參數說明:
- key – 要刪除的鍵值對的鍵。
通過上面的介紹,你應該對 Python delitem() 函式有了一定的了解,並且知道如何使用它來刪除字典中的特定鍵值對。