0% found this document useful (0 votes)
2 views3 pages

Dictionary

The document contains three dictionaries: 'capital_data' which provides information about the capitals, populations, and areas of various countries; 'gdp_growth_2023' which details the GDP growth rates for different countries across four quarters in 2023; and 'asean_countries' which lists ASEAN member countries along with their capitals, populations, and areas.

Uploaded by

yuzi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views3 pages

Dictionary

The document contains three dictionaries: 'capital_data' which provides information about the capitals, populations, and areas of various countries; 'gdp_growth_2023' which details the GDP growth rates for different countries across four quarters in 2023; and 'asean_countries' which lists ASEAN member countries along with their capitals, populations, and areas.

Uploaded by

yuzi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

#Dictionary number 1

capital_data = {
'usa': {
'capital': 'washington, d.c.',
'population': 692683,
'area_km2': 177.0
},
'france': {
'capital': 'paris',
'population': 2148327,
'area_km2': 105.4
},
'japan': {
'capital': 'tokyo',
'population': 13929286,
'area_km2': 2194.07
},
'germany': {
'capital': 'berlin',
'population': 3669491,
'area_km2': 891.8
},
'canada': {
'capital': 'ottawa',
'population': 1013242,
'area_km2': 2778.13
},
'australia': {
'capital': 'canberra',
'population': 462213,
'area_km2': 814.2
},
'brazil': {
'capital': 'brasília',
'population': 3055149,
'area_km2': 5802.0
},
'india': {
'capital': 'new delhi',
'population': 3187000,
'area_km2': 1483.0
},
'russia': {
'capital': 'moscow',
'population': 12615279,
'area_km2': 2561.5
},
'south africa': {
'capital': 'pretoria',
'population': 741651,
'area_km2': 687.54
}
}

#dictionary number 2
gdp_growth_2023 = {
'usa': {
'q1': 1.8,
'q2': 2.1,
'q3': 2.3,
'q4': 2.0
},
'germany': {
'q1': 0.0,
'q2': -0.3,
'q3': -0.1,
'q4': 0.2
},
'china': {
'q1': 4.5,
'q2': 6.3,
'q3': 4.9,
'q4': 5.2
},
'india': {
'q1': 6.1,
'q2': 7.8,
'q3': 6.3,
'q4': 6.5
},
'brazil': {
'q1': 1.9,
'q2': 3.0,
'q3': 2.5,
'q4': 2.7
},
'uk': {
'q1': 0.1,
'q2': 0.2,
'q3': 0.3,
'q4': 0.4
},
'japan': {
'q1': 2.7,
'q2': 4.8,
'q3': 4.0,
'q4': 4.2
},
'south korea': {
'q1': 0.3,
'q2': 0.9,
'q3': 1.1,
'q4': 1.2
},
'canada': {
'q1': 0.8,
'q2': -0.2,
'q3': 0.4,
'q4': 0.6
},
'australia': {
'q1': 0.2,
'q2': 0.4,
'q3': 0.6,
'q4': 0.5
}
}

# Dictiony number 3
asean_countries = {
'brunei': ['bandar seri begawan', 445373, 5765],
'cambodia': ['phnom penh', 17100000, 181035],
'indonesia': ['jakarta', 273753191, 1904569],
'laos': ['vientiane', 7351000, 236800],
'malaysia': ['kuala lumpur', 33181072, 330803],
'myanmar': ['naypyidaw', 54339766, 676578],
'philippines': ['manila', 114097000, 300000],
'singapore': ['singapore', 5612000, 728.6],
'thailand': ['bangkok', 71510000, 513120],
'vietnam': ['hanoi', 100862980, 331212]
}

You might also like