写一个函数,将两个字符串连接
时间: 2023-11-28 12:49:02 浏览: 236
用C语言写一个函数,将两个字符串连接
以下是 Python 语言的实现:
```python
def string_concat(str1, str2):
return str1 + str2
```
该函数接受两个字符串参数 `str1` 和 `str2`,并返回它们的连接结果。我们可以这样调用函数:
```python
result = string_concat("hello", "world")
print(result) # 输出 "helloworld"
```
阅读全文