cloud9 python hw

sazo_1

 

Create three arrays called Names  and accountnumbers  and balance 

Notice that the Names  array is a string array while accountnumbers  and balance  will hold numeric values. 

  •  Write a program to display the menu with the following options and ask for the user input.

                     Type P to populate accounts

                      Type S to search for account.

                     Type E to exit.

  • If the user types P.
    •   Populate all the three arrays up to 5 values
    •  And display the menu again.
  • If the user types S then:
    • Ask the user for the account number.
    •  Search the array for that account number and find its position in the accountnumbers array.
    •  Display the Name, and balance at the position found during the above search.
  • If the user types E. then:
    •  Terminate the program with the following message
    • Thank you for using the program.
      Bye
  •  If the user types any other option:
    • Display the message “Invalid choice. Please try again!” and go back and display the menu.

PS: You program must keep displaying the menu until the user types the option E, to exit the program.

Mimir Requirement: The file name must be CS902Module6Homework1.py

For exact messages to display, menu options, please refer to the test case scenario below:

Test Scenario:

**** MENU OPTIONS ****
Type P to populate accounts
Type S to search for account
Type E to exit
Please enter your choice: 'P'
Please enter a name: 'John'
Please enter an account number: 1
Please enter a balance: 100
Please enter a name: 'Susan'
Please enter an account number: 2
Please enter a balance: 200
Please enter a name: 'Mary'
Please enter an account number: 3
Please enter a balance: 300
Please enter a name: 'Maria'
Please enter an account number: 4
Please enter a balance: 400
Please enter a name: 'Adam'
Please enter an account number: 5
Please enter a balance: 500
**** MENU OPTIONS ****
Type P to populate accounts
Type S to search for account
Type E to exit
Please enter your choice: 'S'
Please enter the account number to search: 2
Name is: Susan
Susan account has the balance of : $200
**** MENU OPTIONS ****
Type P to populate accounts
Type S to search for account
Type E to exit
Please enter your choice: 'S'
Please enter the account number to search: 5
Name is: Adam
Adam account has the balance of : $500
**** MENU OPTIONS ****
Type P to populate accounts
Type S to search for account
Type E to exit
Please enter your choice: 'S'
Please enter the account number to search: 5
Name is: Adam
Adam account has the balance of : $500
**** MENU OPTIONS ****
Type P to populate accounts
Type S to search for account
Type E to exit
Please enter your choice: 'S'
Please enter the account number to search: 9
The account number not found!
**** MENU OPTIONS ****
Type P to populate accounts
Type S to search for account
Type E to exit
Please enter your choice: 'A'
Invalid choice. Please try again!
**** MENU OPTIONS ****
Type P to populate accounts
Type S to search for account
Type E to exit
Please enter your choice: 'E'
Thank you for using the program.
Bye

    • 8 years ago
    • 8
    Answer(2)

    Purchase the answer to view it

    NOT RATED
    • Cloud9PythonHw.docx
    • newpycode.docx

    Purchase the answer to view it

    NOT RATED
    • python.docx