检查某个键是否存在检查某个键是否存在thisdict = { "brand": "Porsche", "model": "911", "year": 1963}if "model" in thisdict: print("Yes, 'model' is one of the keys in the thisdict dictionary")