8-6 城市名 # 城市名 def city_country(city, country): print(city.title() + ", " + country.title()) # 使用三个城市-国家对调用这个函数 city_country('santiago', 'chile') city_country('beijing', 'china') city_country('shanghai',