Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

ASSIGNMENT REQUIREMENTS This assignment requires a dictionary of state abbreviations and their capital cities . The abbreviations are the keys and the state capitals are

ASSIGNMENT REQUIREMENTS

This assignment requires a dictionary of state abbreviations and their capital cities. The abbreviations are the keys and the state capitals are the values.

Start by entering data for any four states of your choice. Then, report this count but use a function to get the count.

Use a while loop to add more abbreviations and capitals. The loop should continue until the user presses Enter when prompted for an abbreviation.

Inside the while loop:

If the state entered is already in the dictionary, report its capital.

If it is not in the dictionary, prompt the user to enter the capital for that state and add it to the dictionary

After the while loop ends:

Report again the count of the number of states in the dictionary.

Using another loop and the items() method, display all the state abbreviations and their capitals.

In the same Python program write this code, although it has nothing to do with the states code.

Using a dictionary comprehension, create a dictionary with the odd integers from 1 to 9 as keys and their cubes as values.

Use a for loop to display the keys and values but without using the items() method.

image text in transcribed

Sample Output 4 states are in the dictionary Lel's add i lew more Enter state abbrev. or Enter to quit CA Enter capital of CA Sacramento Enter state abbrev. or Enter to quit KS Already have KS, capital is Topeka Enter state abbrev. or Enter to quit co Enter capital of co Denver Enter state abbrev. or Enter to quit WI Enter capital of wi Madison Enter state abbrev. or Enter to quit Got 7 states now. Here they are... The capital of ID is Boise The capital of SD is Pierre The capital of ME is Augusta The capital of KS is Topeka The capila oI Cn is Sacramento The capital of Co is Denver The capital of WI is Madison Some cubes made with a dictionary comprehension.. 1 cubed is 1 3 cubed is 27 5 cubed is 125 7 cubed is 313 9 cubed is 729

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

1. Television more Over watching faceing of many problems ?

Answered: 1 week ago

Question

Is there a link between chronic stress and memory function?

Answered: 1 week ago

Question

How many Tables Will Base HCMSs typically have? Why?

Answered: 1 week ago

Question

What is the process of normalization?

Answered: 1 week ago