TypeError Traceback (most recent call last)
Cell In[1], line 14
11 base_salary = 6700
13 # 计算个人每月需缴纳的社保费用
—> 14 monthly_cost = sum([base_salary * rate for rate, name in social_security_rates.items() if name != ‘工伤保险’ and name != ‘生育保险’])
16 monthly_cost
TypeError: unsupported operand type(s) for +: ‘int’ and ‘str’