i am beginer of the python programming. i am creating simple employee salary calculation using python. tax = salary * 10 / 100 this line said wrong error displayed Unindent does not match outer indentation level
this is the full code
   salary = 60000
if(salary > 50000):
    tax = float(salary * 10 / 100)
elif(salary > 35000):
    tax =  float(salary * 5 / 100)
else:
    tax = 0
    netsal = salary - tax
    print(tax)
    print(netsal)
 
     
    