
def get_city_country(city, country, population=''): if population=='': formatted_pos = city + ', ' + country else: formatted_pos = city + ', ' + country + ' - population ' + population return formatted_pos.title()

def get_city_country(city, country, population=''): if population=='': formatted_pos = city + ', ' + country else: formatted_pos = city + ', ' + country + ' - population ' + population return formatted_pos.title()
>>> 'abc'.capitalize() + ' and ' + 'def'.capitalize() 'Abc and Def' >>>