Completed Exercise 8-5 Cities

This commit is contained in:
cheeks 2025-02-11 12:16:18 -05:00
parent a868adfe0e
commit cf41416449

View File

@ -0,0 +1,9 @@
# Exercise 8-5 Cities
# Learning Objective: Write a function that has a default value. Call it three times.
def describe_city(city, country='United States'):
print(f'{city.title()} is in {country.title()}')
describe_city('Chicago')
describe_city('Annapolis')
describe_city('Paris', 'France')