5 lines
188 B
Python
5 lines
188 B
Python
"""A collection of functions for working with cities."""
|
|
|
|
def city_country(city, country):
|
|
"""Return a string like 'Santiago, Chile'."""
|
|
return f"{city.title()}, {country.title()}" |