编写一个函数,将两个字符串连接起来
时间: 2024-05-08 19:20:46 浏览: 80
以下是 Python 代码实现:
```python
def concat_strings(str1, str2):
return str1 + str2
```
该函数接收两个字符串作为参数,使用加号运算符将它们连接起来,并返回连接后的字符串。可以在调用该函数时传入任意两个字符串,如下所示:
```python
print(concat_strings("Hello", "World")) # 输出 "HelloWorld"
print(concat_strings("Python", " is awesome!")) # 输出 "Python is awesome!"
```
阅读全文