NameError Traceback (most recent call last)
Cell In[1], line 25
22 tax_threshold = 5000
24 # 计算应纳税所得额
—> 25 taxable_income = social_security_base - tax_threshold - total_social_security_deductions
27 # 税率表
28 tax_rates = {
29 ‘36000’: 0.03,
30 ‘144000’: 0.1,
(…)
35 ‘1000000’: 0.45
36 }
NameError: name ‘total_social_security_deductions’ is not defined