Write a loop that prints each country's population in country_pop. Sample output with input: 'China:1365830000,India:1247220000,United States:318463000,Indonesia:252164800': United States has 318463000 people. India has 1247220000 people. Indonesia has 252164800 people. China has 1365830000 people. 1 user input input() 2 entries = user_input.split(',') 3 country_pop = {} 4 5 for pair in entries: split_pair = pair.split(':') country_pop[split_pair[0]] = split_pair[1] # country_pop is a dictionary, Ex: { 'Germany': '82790000', 'France': '67190000' } 8 10 Your solution goes here 12 print(country, 'has', pop, 'people.') 123 567 c0 o O 12

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter8: Arrays
Section: Chapter Questions
Problem 8PE
icon
Related questions
Question

Pyton programming question.

 I need to add a solution to the following program that defines country and pop.  I can not modify the code shown.  I am having difficulty defining country and pop without getting an error. It must be inline with the statements present but I can't modify any of the existing code.  I need to be able to iterate over the dictionary with the programming as is.

Write a loop that prints each country's population in country_pop.
Sample output with input:
'China:1365830000,India:1247220000,United States:318463000,Indonesia:252164800':
United States has 318463000 people.
India has 1247220000 people.
Indonesia has 252164800 people.
China has 1365830000 people.
1 user_input = input()
2 entries = user_input.split(',')
3 country_pop = {}
4
5 for pair in entries:
split_pair = pair.split(':')
country_pop[split pair[0]] = split_pair[1]
# country_pop is a dictionary, Ex: { 'Germany': '82790000', 'France': '67190000' }
6
7
8
9
10 '' Your solution goes here
11
12
print(country, 'has', pop, 'people.')
Transcribed Image Text:Write a loop that prints each country's population in country_pop. Sample output with input: 'China:1365830000,India:1247220000,United States:318463000,Indonesia:252164800': United States has 318463000 people. India has 1247220000 people. Indonesia has 252164800 people. China has 1365830000 people. 1 user_input = input() 2 entries = user_input.split(',') 3 country_pop = {} 4 5 for pair in entries: split_pair = pair.split(':') country_pop[split pair[0]] = split_pair[1] # country_pop is a dictionary, Ex: { 'Germany': '82790000', 'France': '67190000' } 6 7 8 9 10 '' Your solution goes here 11 12 print(country, 'has', pop, 'people.')
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Functions
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT