Computer Science, asked by lalaji73, 6 months ago

Answer fast. Its important pls don't spam

Attachments:

Answers

Answered by TrueAnswerer
1

def tax(x):

if (x<=50000):

y=0.05*x

elif (x>50000&&x<=60000):

y=0.07*x

elif (x>60000&&x<=70000):

y=0.08*x

elif (x>70000):

y=0.1*x

else:

print("Invalid Salary Amount")

y=0

return(y)

Hope it helps

Similar questions