Question: For the Employee Class Program in this tutorial, what if we need to update the display menu and selections to add in a way to

For the Employee Class Program in this tutorial, what if we need to update the display menu and selections to add in a way to update the salary? What code segments would need to be added to the display_menu() method and the command while loop respectively to implement this?
a.)
print("updsal - Update salary")
and
elif command.lower()== "updsal":
upd_salary(employees)
b.)
print("updsal - Update salary")
and
elif command.lower()== "updsal":
upd_salary()
c.)
print("updsal - Update salary")
and
elif command = "updsal":
upd_salary(employees)
d.)
print("updsal - Update salary")
and
elif command.lower()== updsal:
upd_salary(employees)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!