第29109题 单选题
执行以下Python代码,最终的输出结果是?
student_score = {'Alice': 95, 'Bob': 88}
print(student_score.get('Charlie', 60))
A

抛出KeyError异常

B

输出60

C

输出None

D

输出95

程序运行统计
暂无判题统计
提交0次 正确率0.00%
答案解析