Question: Using python, Write a program that asks the user to input an arbitrary number of names of states, and then displays the names in the
Using python, Write a program that asks the user to input an arbitrary number of names of states, and then displays the names in the reverse order they were entered.
Do not use lists or files to store the names, also, do not import other libraries. This is a recursion problem. Please also screenshot the outcome and code!
the outcome would be like this:
Enter a state: OHIO #input
Enter a state: Texas #input
Enter a state:oregon #input
Enter a state: End #input
oregon
Texas
Ohio
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
