TypeError Traceback (most recent call last)
Cell In[1], line 30
20 shengkao_score_distribution = {
21 “言语理解与表达”: 24,
22 “数量关系”: 15,
(…)
26 “申论”: 100
27 }
29 # 计算总分
—> 30 guokao_total_score = sum(guokao_score_distribution.values())
31 shengkao_total_score = sum(shengkao_score_distribution.values())
33 # 评分标准
TypeError: unsupported operand type(s) for +: ‘int’ and ‘dict’