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.

Sample Output

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

Database And Expert Systems Applications 24th International Conference Dexa 2013 Prague Czech Republic August 2013 Proceedings Part 1 Lncs 8055

Authors: Hendrik Decker ,Lenka Lhotska ,Sebastian Link ,Josef Basl ,A Min Tjoa

2013 Edition

3642402844, 978-3642402845

More Books

Students also viewed these Databases questions

Question

What is meant by staff authority ?

Answered: 1 week ago

Question

Discuss the various types of policies ?

Answered: 1 week ago

Question

Briefly explain the various types of leadership ?

Answered: 1 week ago

Question

Explain the need for and importance of co-ordination?

Answered: 1 week ago

Question

Explain the contribution of Peter F. Drucker to Management .

Answered: 1 week ago

Question

Was there an effort to involve the appropriate people?

Answered: 1 week ago