continent_data = [
{"name": "Asia"},
{"name": "North America"},
{"name": "Europe"},
{"name": "South America"}
]
europe = [
{'name':'UK', 'currency':'Pounds'},
{'name':'Germany', 'currency':'Euro'},
{'name':'Italy', 'currency':'Euro'},
]
asia = [
{'name':'China', 'currency':'Yuan'},
{'name':'Japan', 'currency':'Yen'},
]
north_america = [
{'name':'USA', 'currency':'Dollar'},
{'name':'Mexico', 'currency':'Peso'}
]
south_america = [
{'name':'Brazil', 'currency':'Real'},
{'name':'Argentina', 'currency':'Peso'}
]
uk = [
{"name": "London", "description": "Capital city known for its finance, culture, and history"},
{"name": "Manchester", "description": "Northern hub for music, sports, and industry"},
{"name": "Birmingham", "description": "Second-largest city, known for manufacturing and diversity"},
{"name": "Liverpool", "description": "Port city famous for The Beatles and football"},
{"name": "Bristol", "description": "Historic maritime city with a creative edge"}
]
germany = [
{"name": "Berlin", "description": "Capital city known for history, culture, and politics"},
{"name": "Munich", "description": "Bavarian capital known for Oktoberfest and tech innovation"},
{"name": "Frankfurt", "description": "Major financial center and home to the ECB"},
{"name": "Hamburg", "description": "Large port city with maritime economy and media hubs"},
{"name": "Cologne", "description": "Cultural city known for its Gothic cathedral and trade fairs"}
]
italy = [
{"name": "Rome", "description": "Capital city known for ancient history and architecture"},
{"name": "Milan", "description": "Fashion and financial capital of northern Italy"},
{"name": "Naples", "description": "Historic southern city and birthplace of pizza"},
{"name": "Florence", "description": "Renaissance city known for art and museums"},
{"name": "Venice", "description": "Famous canal city built on water with unique charm"}
]
china = [
{"name": "Beijing", "description": "Capital city with political, cultural, and historical importance"},
{"name": "Shanghai", "description": "Global financial hub and largest city by population"},
{"name": "Shenzhen", "description": "Tech powerhouse and innovation center near Hong Kong"},
{"name": "Guangzhou", "description": "Major trade and manufacturing city in southern China"},
{"name": "Chengdu", "description": "Economic center of western China and home of pandas"}
]
japan = [
{"name": "Tokyo", "description": "Capital city and global center for finance, tech, and culture"},
{"name": "Osaka", "description": "Major economic hub known for food and commerce"},
{"name": "Kyoto", "description": "Historic city famous for temples, shrines, and tradition"},
{"name": "Yokohama", "description": "Port city just south of Tokyo with modern skyline"},
{"name": "Nagoya", "description": "Industrial center and home to automotive manufacturing"}
]
usa = [
{"name": "Washington, D.C.", "description": "Capital of the United States and seat of government"},
{"name": "New York City", "description": "Largest city, a global hub for finance and culture"},
{"name": "Los Angeles", "description": "Entertainment capital and second-largest city"},
{"name": "Chicago", "description": "Major Midwest city known for architecture and industry"},
{"name": "San Francisco", "description": "Tech-driven city and gateway to Silicon Valley"}
]
mexico = [
{"name": "Mexico City", "description": "Capital and largest city, political and cultural center"},
{"name": "Guadalajara", "description": "Major tech and cultural hub in western Mexico"},
{"name": "Monterrey", "description": "Industrial and business center in the north"},
{"name": "Puebla", "description": "Historic city known for colonial architecture and cuisine"},
{"name": "Tijuana", "description": "Border city with strong ties to the U.S. and growing economy"}
]
brazil = [
{"name": "Brasília", "description": "Modern capital and center of government"},
{"name": "São Paulo", "description": "Largest city and financial powerhouse of Brazil"},
{"name": "Rio de Janeiro", "description": "Famous for beaches, Carnival, and Christ the Redeemer"},
{"name": "Belo Horizonte", "description": "Major city in mining and industry"},
{"name": "Porto Alegre", "description": "Cultural and economic hub in southern Brazil"}
]
argentina = [
{"name": "Buenos Aires", "description": "Capital city and cultural, political, and economic center"},
{"name": "Córdoba", "description": "University city and industrial hub in central Argentina"},
{"name": "Rosario", "description": "Major river port and birthplace of Che Guevara"},
{"name": "Mendoza", "description": "Wine capital located at the foothills of the Andes"},
{"name": "San Miguel de Tucumán", "description": "Historic city known for Argentine independence"}
]