# Python|setdefault()の使い方
# setdefault()の例1
Get the value of the "model" item:
car = { "brand": "Ford", "model": "Mustang",
"year": 1964}
x = car.setdefault("model", "Bronco")print(x)
Run example »
# setdefault()の定義及び使い方
setdefault()関数は、項目を選択します。 キーが存在しない場合は、指定した値を持つキーを挿入します。 「」 を参照してください。 以下の例
# setdefault()の構文
dictionary.setdefault(keyname, value)
# setdefault()の引数
パラメータ 説明
キー名 必修。値を返す項目のキー名
価値:オプショーン。キーが存在する場合、このパラメータは無効です。次の場合 keyが存在しない場合、この値がキーの値になります。デフォルト値なし
# setdefault()の例2
Get the value of the "color" item, if the "color" item does not exist,
insert "color" with the value "white":
car = { "brand": "Ford", "model": "Mustang",
"year": 1964}x = car.setdefault("color",
"white")print(x)
Run example »