def menu_choice(): print("1. Sweater") print("2. Suit") print("3.Exit") choice = input("Enter your choice: ") return choice
a) Prints options for selecting sweaters.
b) Prints options for selecting suits.
c) Exits the program.
d) Prompts the user to enter a choice.