NameError Traceback (most recent call last)
Cell In[1], line 13
2 quick_deduction = {
3 “0-3000”: 0,
4 “3000-12000”: 210,
(…)
9 “80000以上”: 15160
10 }
12 # 计算个税
—> 13 tax = taxable_income * tax_rate - quick_deduction[tax_bracket]
15 # 计算税后收入
16 net_income = yantaibase_salary - total_social_insurance - tax
NameError: name ‘taxable_income’ is not defined