# Python|popitem()の使い方

HomeDictionary Methods

# popitem()の例1

Remove the last item from the dictionary:

    car = {  "brand": "Ford",  "model": "Mustang",  
    "year": 1964}
car.popitem()print(car)

Run example »

# popitem()の定義及び使い方

popitem()関数は、最後に辞書に挿入されました。3.7より前のバージョンでは、 popitem()関数は、ランダムアイテムを削除します。 削除された項目は、popitemの戻り値です()。 メソッドをタプルとして使用する場合は、次の例を参照してください。

# popitem()の構文

dictionary.popitem(keyname, defaultvalue)

# popitem()の引数

パラメータなし

# popitem()の例2

The removed item is the return value of the pop() method:

    car = {  "brand": "Ford",  "model": "Mustang",  
    "year": 1964}x = car.popitem()print(x)

Run example »

HomeDictionary Methods