1.

Write the python program for the question in the image showed below

Answer»

CODE:

SALARY, job_level = FLOAT(input('Enter salary:')), int(input('Job level:'))

if job_level == 3:

   print('Your new salary WOULD be %d'%(salary+(0.15*salary)))

elif job_level == 4:

   print('Your new salary would be %d'%(salary+(0.07*salary)))

else:

   print('Your new salary would be %d'%(salary+(0.05*salary)))

   



Discussion

No Comment Found