TypeError Traceback (most recent call last)
Cell In[1], line 14
11 base_salary = 13500
13 # 计算个人缴费总额
—> 14 total_personal_payment = sum([base_salary * rate for rate, insurance in social_insurance_rates.items() if insurance != 0])
16 total_personal_payment
TypeError: unsupported operand type(s) for +: ‘int’ and ‘str’