NameError Traceback (most recent call last)
Cell In[1], line 4
2 tax_rate = 0
3 quick_deduction = 0
----> 4 if taxable_income <= 30000:
5 tax_rate = tax_rates[0]
6 quick_deduction = quick_deductions[0]
NameError: name ‘taxable_income’ is not defined