SDEV300 Week3-display, sort and update as needed a List Solved

35.00 $

Category:

Description

5/5 - (1 vote)

The first exercise  allows a user to display, sort and update as needed a List of U.S States containing the State Capital and State Bird. The Internet provides multiple references with these lists. For example: https://www.crestcapital.com/tax/us_states_and_capitals http://www.thewebmap.com/FiftyStates/

You will need to embed the State data into your Python code. The user interface will allow the user to perform the following functions:

  1. Display all U.S. States in Alphabetical order along with Capital and Flower
  2. Search for a specific state and display the appropriate Capital and Bird
  3. Update a Bird for a specific state
  4. Exit the program

1

 

As before, generate an appropriate Welcome, prompt, and exit messages to help the user navigate the program.

The program should continue to allow selections until the program is exited.

If a state is not found an appropriate message should be displayed.

Hints:

  1. Use the List data structure and associated sort() and searching capabilities
  2. Create and use functions as often as possible
  3. Use comments to document your code

For the second exercise  determine the union, intersection and difference of the square and cube of integers ranging from 1 to 100. Sets are clearly the way to go here. You can use Math functions to generate the sets for the square and cube for the Integers.

The following functionality should be available for the user via a simple interface:

  1. Display the Square and Cube for Integers ranging from 1 to 100
  2. Search the sets for a specific Integer and display the Square and Cube values
  3. Display the Union of Square and Cube sets
  4. Display the Intersection of Square and Cube sets
  5. Display the Difference of Square and Cube sets
  6. Exit the program

If an Integer is not found an appropriate message should be displayed The program should continue to allow selections until the program is exited.

Hints:

  1. Use Sets and their associated union(), interaction() and difference() methods
  2. Create and use functions as often as possible
  3. Use comments to document your code

 

3. Document your results for each application within the AWS Cloud9 classroom environment.  Provide screen captures and descriptions for each test cases you provide for each of your applications. Be sure to go through each possible user interface combination in your test cases.

  • Week3-0x4m8w.zip