ValueError Traceback (most recent call last)
Cell In[1], line 36
34 tax_payment = 0
35 for income_bracket, rate in tax_rates.items():
—> 36 lower, upper = map(int, income_bracket.split(‘-’))
37 if taxable_income > lower:
38 tax_payment += (min(taxable_income, upper) - lower) * rate
ValueError: invalid literal for int() with base 10: ‘80000以上’