写一函数,将两个字符串连接
时间: 2024-03-20 21:44:22 浏览: 67
以下是实现题目要求的Python函数:
```python
def concatenate_strings(str1, str2):
"""
将两个字符串连接
"""
return str1 + str2
```
函数接收两个字符串参数`str1`和`str2`,使用加号运算符将它们连接起来,并将结果返回。
可以这样调用函数:
```python
s1 = "Hello"
s2 = "World"
result = concatenate_strings(s1, s2)
print(result) # 输出"HelloWorld"
```
函数的返回值为`"HelloWorld"`。
阅读全文