介绍python concat用法
时间: 2023-12-24 08:53:21 浏览: 131
python merge、concat合并数据集的实例讲解
Python中的concat()函数可以用来连接(拼接)两个或多个字符串。它可以接受任意数量的字符串作为参数,并返回一个新的字符串,其中包含所有给定字符串的内容。
使用concat()函数的语法如下:
```python
new_string = concat(string1, string2, string3, ...)
```
其中,string1、string2、string3等为要连接的字符串。注意,这些参数可以是变量、字面值或表达式。
示例:
```python
str1 = "Hello"
str2 = "World"
str3 = "!"
new_str = concat(str1, str2, str3)
print(new_str) # 输出:HelloWorld!
```
还可以使用加号(+)来连接字符串,例如:
```python
str1 = "Hello"
str2 = "World"
str3 = "!"
new_str = str1 + str2 + str3
print(new_str) # 输出:HelloWorld!
```
但是,当需要连接多个字符串时,使用concat()函数会更加简洁和方便。
阅读全文