举例说明concat()函数的主要参数及其用法
时间: 2023-08-04 07:12:47 浏览: 81
mysql函数拼接查询concat函数的使用方法
concat()函数是用于将多个字符串连接起来形成一个新的字符串。其主要参数是要连接的多个字符串,可以是两个或以上的字符串,用逗号分隔。例如:
```python
str1 = "Hello"
str2 = "World"
str3 = "!"
new_str = str1.concat(str2, str3)
print(new_str)
```
输出结果为:
```
HelloWorld!
```
在上面的例子中,我们将三个字符串 `str1`、`str2`和`str3`连接起来形成了一个新的字符串 `new_str`,其中 `str1`、`str2`和`str3`是作为参数传递给 `concat()` 函数的。
需要注意的是,`concat()` 函数只能用于字符串类型变量,如果传递的参数不是字符串类型,会产生错误。此外,在 Python 中,字符串类型变量也有一个 `+` 运算符,可以用于字符串的连接,与 `concat()` 函数的功能类似。例如:
```python
str1 = "Hello"
str2 = "World"
str3 = "!"
new_str = str1 + str2 + str3
print(new_str)
```
输出结果也为:
```
HelloWorld!
```
阅读全文