d = {'food':{'cake':1,'egg':5}} print(d.get('egg','no this food'))
时间: 2023-09-30 17:11:10 浏览: 201
输出结果为 5,因为字典 d 中存在键 'food',并且键 'food' 对应的值是一个嵌套字典,其中包含键 'cake' 和 'egg'。因此,d.get('egg', 'no this food') 会返回 'egg' 对应的值 5。如果查询的键不在字典中,get() 方法会返回指定的默认值 'no this food'。
阅读全文