Create the shell of a menu driven program. The program should start by outputting the menu choices 1 through 5, each on its own line. It should then output the prompt "Enter the choice for what you would like to see " When the user enters a number between 1 and 4, the program calls a function that outputs "You have called function number " then the number selected. After that, the initial prompt is repeated. When the user enters the number 5, the program terminates. When the user enters anything else, the program outputs "Invalid selection. Try again." and then repeats the initial prompt. (Python) Input Format Input could be any integer. Constraints Use exact prompts. Output Format Enter the choice for what you would like to see 1 2 3 4 5 Sample Input 0 1 5 Sample Output 0 Enter the choice for what you would like to see 1 2 3 4 5 You have called function number 1 Enter the choice for what you would like to see 1 2 3 4 5
Create the shell of a menu driven
When the user enters a number between 1 and 4, the program calls a function that outputs "You have called function number " then the number selected. After that, the initial prompt is repeated.
When the user enters the number 5, the program terminates. When the user enters anything else, the program outputs "Invalid selection. Try again." and then repeats the initial prompt. (Python)
Input Format
Input could be any integer.
Constraints
Use exact prompts.
Output Format
Enter the choice for what you would like to see
1
2
3
4
5
Sample Input 0
Sample Output 0
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images