NameError Traceback (most recent call last)
Cell In[1], line 45
43 base_salary = 11200
44 social_security_payment = calculate_social_security_payment(base_salary)
—> 45 tax = calculate_income_tax(base_salary, social_security_payment)
47 tax, social_security_payment
Cell In[1], line 39, in calculate_income_tax(base_salary, social_security_payment)
36 else:
37 tax_rate = 0.45
—> 39 tax = taxable_income * tax_rate - 速算扣除数
40 return tax
NameError: name ‘速算扣除数’ is not defined