NameError Traceback (most recent call last)
Cell In[1], line 6
3 tax_quick_deduction = 210 # 假设速算扣除数
5 # 计算个税
----> 6 personal_income_tax = taxable_income * tax_rate - tax_quick_deduction
8 # 计算税后工资
9 after_tax_income = monthly_salary - social_insurance_payment - personal_income_tax
NameError: name ‘taxable_income’ is not defined