Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Chapter 9 Country Statistics Lookup - Multiple Measures Assume a program begins with the statement: allData ' US ' : { ' pop ' :

Chapter 9
Country Statistics Lookup-Multiple Measures
Assume a program begins with the statement:
allData
'US': {'pop':325.7,'gdp': 19.39,'ccy': 'USD', 'fx': 1.0},
'CA': {'pop': 36.5,'gdp': 1.65,'ccy': 'CAD', 'fx': 1.35},
'MX': {'pop':129.2,'gdp': 1.15,'ccy': 'MXN','fx': 19.68}
}
Write subsequent statements that (in a loop) prompt the user for a country code (US, CA, or MX), then prompt for a
measure name (pop, gdp, ccy, or fx), then look up in the above dictionary for the corresponding value, and display that value.
Example run:
Please enter a country code: CA
Please enter a statistic: pop
CA pop =36.5
Your program should handle the cases where a user-entered country code or measure name is not found.
image text in transcribed

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 Administrator Limited Edition

Authors: Martif Way

1st Edition

B0CGG89N8Z

More Books

Students also viewed these Databases questions

Question

What is DDL?

Answered: 1 week ago