NameError Traceback (most recent call last)
Cell In[1], line 19
16 total_deduction += base_salary * (social_insurance_rates[insulaance][‘个人’] / 100)
17 return total_deduction
—> 19 monthly_deduction = calculate_monthly_deduction(9900)
20 monthly_deduction
Cell In[1], line 16, in calculate_monthly_deduction(base_salary)
14 for insurance in social_insurance_rates:
15 if social_insurance_rates[insurance][‘个人’] > 0:
—> 16 total_deduction += base_salary * (social_insurance_rates[insulaance][‘个人’] / 100)
17 return total_deduction
NameError: name ‘insulaance’ is not defined