Python ตรวจสอบว่ามีคีย์อยู่ในพจนานุกรมหรือไม่
ตรวจสอบว่ามีคีย์อยู่ในพจนานุกรมหรือไม่
ในการพิจารณาว่ามีคีย์ที่ระบุอยู่ในพจนานุกรมหรือไม่ ให้ใช้in
คีย์เวิร์ด:
ตัวอย่าง
ตรวจสอบว่า "model" มีอยู่ในพจนานุกรมหรือไม่:
thisdict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
if "model" in thisdict:
print("Yes, 'model' is
one of the keys in the thisdict dictionary")