NameError Traceback (most recent call last)
Cell In[1], line 6
3 quick_deduction_amount = 210 # 对应速算扣除数
5 # 计算个人所得税
----> 6 personal_income_tax = taxable_income * tax_rate - quick_deduction_amount
8 # 计算最终扣税总额
9 total_deduction = total_social_security + personal_income_tax
NameError: name ‘taxable_income’ is not defined