TypeError Traceback (most recent call last)
Cell In[1], line 14
11 social_security_base = 19700
13 # 计算社保个人缴纳部分
—> 14 social_security_personal_payment = sum([
15 rate * social_security_base for rate, payment in yibin_social_security_rates.items() if ‘个人’ in payment
16 ])
18 # 个税起征点
19 personal_tax_threshold = 5000
TypeError: unsupported operand type(s) for +: ‘int’ and ‘str’