NameError Traceback (most recent call last)
Cell In[1], line 50
48 # 计算
49 salary = 15300
—> 50 total_deduction_amount = total_deduction(salary)
51 total_deduction_amount
Cell In[1], line 46, in total_deduction(salary)
44 social_insurance_payment = calculate_social_insurance(salary)
45 income_tax = calculate_income_tax(salary, social_insurance_payment)
—> 46 return social_insurance_payment + income税
NameError: name ‘income税’ is not defined