NameError Traceback (most recent call last)
Cell In[1], line 4
2 tax_rate = 0
3 quick_deduction_value = 0
----> 4 for limit, rate in tax_rates.items():
5 if taxable_income <= limit:
6 tax_rate = rate
NameError: name ‘tax_rates’ is not defined