Python Dictionary setdefault ()เมธอด
ตัวอย่าง
รับค่าของรายการ "รุ่น":
car = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
x = car.setdefault("model", "Bronco")
print(x)
ความหมายและการใช้งาน
วิธี การsetdefault()
คืนค่าของรายการด้วยคีย์ที่ระบุ
หากไม่มีคีย์ ให้ใส่คีย์ด้วยค่าที่ระบุ ดูตัวอย่างด้านล่าง
ไวยากรณ์
dictionary.setdefault(keyname, value)
ค่าพารามิเตอร์
Parameter | Description |
---|---|
keyname | Required. The keyname of the item you want to return the value from |
value | Optional. If the key exist, this parameter has no effect. If the key does not exist, this value becomes the key's value Default value None |
ตัวอย่างเพิ่มเติม
ตัวอย่าง
รับค่าของรายการ "สี" หากไม่มีรายการ "สี" ให้แทรก "สี" ด้วยค่า "สีขาว":
car = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
x = car.setdefault("color",
"white")
print(x)