python写一函数concat,输入两行字符串将两个字符串连接
时间: 2023-03-31 20:02:50 浏览: 111
python实现两个字符串连接程序
好的,我可以回答这个问题。下面是一个示例函数:
```python
def concat(str1, str2):
return str1 + str2
```
使用方法:
```python
str1 = "Hello, "
str2 = "world!"
result = concat(str1, str2)
print(result) # 输出 "Hello, world!"
```
希望这个函数能够帮到你!
阅读全文