NameError Traceback (most recent call last)
Cell In[1], line 6
3 tax_quick_deduction = 0 # 速算扣除数
5 # 计算个税
----> 6 personal_income_tax = taxable_income * tax_rate - tax_quick_deduction
8 # 计算最终扣税金额
9 total_deduction = social_insurance_payment + personal_income_tax
NameError: name ‘taxable_income’ is not defined