def efficiency(time): if time <= 3 : print('Worker is highly efficient') elif time <= 4 and time > 3: print("Improve your speed Mr Worker") elif time <= 5 and time > 4: print("You need training to improve your speed") elif time > 5: print("Mr Worker, We are sorry to tell you that you can no longer be with us any more")

No comments: