python中concat函数的作用
时间: 2023-05-15 12:05:51 浏览: 123
MySQL中的CONCAT函数使用教程
5星 · 资源好评率100%
Python中没有concat函数,但是可以使用"+"运算符来实现字符串、列表、元组等对象的拼接。例如,可以使用以下代码将两个字符串拼接起来:
```
str1 = "Hello"
str2 = "World"
result = str1 + str2
print(result)
```
输出结果为:
```
HelloWorld
```
阅读全文