7 lines
305 B
Python
7 lines
305 B
Python
"""A collection of functions for working with cities."""
|
|
|
|
def city_country(city, country, population):
|
|
"""Return a string like 'Santiago, Chile - population 5000000'."""
|
|
output_string = f"{city.title()}, {country.title()}"
|
|
output_string += f" -population {population}"
|
|
return output_string |