Write a loop that prints each countrys population in country
Write a loop that prints each country\'s population in country_pop. Sample output for the given program United States has 318463000 people. India has 1247220000 people. Indonesia has 252164800 people. China has 1365830000 people. country_pop = {\'China\': 1365830000, \'India\': 1247220000, \'United States\': 318463000, \'Indonesia\': 252164800} # country populations as of 2014 print(country, \'has\', pop, \'people.\')
Solution
Code:
country_pop = {\'china\':1365830000,\'India\':1247220000,\'United States\':318463000
,\'Indonesia\':252164800}
for key in country_pop.keys():
print(str(key)+\" has \"+ str(country_pop[key])+\" people\")
