第26009题 判断题
执行给定Python字典操作代码,判断输出结果是否为`None {'Name': '小杨', 'Age': 12, 'Sex': 'female'}`
dict1 = {"Name": "小杨", "Age": 13}
dict2 = {"Sex": "female", "Age": 12}
dict1.update(dict2)
a = dict1.setdefault("Height", 165)
print(a, dict1)
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析