Respuesta :
Answer:
cities = {
'New York': ['United States', 8620000, 'Fact 1'],
'Paris': ['France', 2140000, 'Fact 2'],
'London': ['England', 8140000, 'Fact 3'],
}
for city in cities:
print("City:", cities[city][0])
print("Population:", cities[city][1])
print("Fact:", cities[city][2])
print()
Explanation:
A dictionary called cities in python and the keys as the names of cities and the country, approximate population and one fact about the country and the printed information on each cities can be represented as follows:
cities = {
"New York": ["USA", 8800000, "more than 800 languages are spoken in New York"],
"Lagos": ["Nigeria", 2700000, "Has the highest population in Nigeria"],
"Kumasi": ["Ghana", 3480000, "One of the oldest cities in Africa"]
}
for x, y in cities.items():
print(x, y)
Dictionary in python is use to store data in key-value pairs. Dictionary are collection which are ordered and mutable.
Dictionary in python can be represented as follows:
dict = {
"Name": "John",
"Age": 30,
"Birth": 1992
}
The dictionary named cities and the name of cities as the keys and the country, approximate population and one fact about the country and the printed information on each cities can be represented as follows:
cities = {
"New York": ["USA", 8800000, "more than 800 languages are spoken here"],
"Lagos": ["Nigeria", 2700000, "Has the highest population in Nigeria"],
"Kumasi": ["Ghana", 3480000, "One of the oldest cities in Africa"]
}
for x, y in cities.items():
print(x, y)
learn more on dictionary in python here: https://brainly.com/question/19720595?referrer=searchResults
