9 lines
232 B
Python
9 lines
232 B
Python
def describe_city(city, country='chile'):
|
|
"""Describe a city."""
|
|
msg = f"{city.title()} is in {country.title()}."
|
|
print(msg)
|
|
|
|
describe_city('santiago')
|
|
describe_city('reykjavik', 'iceland')
|
|
describe_city('punta arenas')
|