NameError Traceback (most recent call last)
Cell In[1], line 19
17 tax_base = monthly_salary - 5000
18 tax_rate = 0.10
—> 19 tax_deduction = 速算扣除数
20 tax = max(tax_base * tax_rate - tax_deduction, 0)
22 # 计算最终扣税金额
NameError: name ‘速算扣除数’ is not defined