一、 城市名 :编写一个名为city_country() 的函数,它接受城市的名称及其所属的国家。这个函数应返回一个格式类似于下面这样的字符串: “Santiago, Chile”(Python)
时间: 2024-05-14 18:19:55 浏览: 145
Python 由字符串函数名得到对应的函数(实例讲解)
以下是实现city_country()函数的代码:
```python
def city_country(city, country):
return city + ', ' + country
```
使用示例:
```python
print(city_country('Santiago', 'Chile'))
# 输出:Santiago, Chile
```
该函数会将传入的城市名和国家名拼接成一个字符串并返回。
阅读全文