python concat
时间: 2023-06-21 11:09:42 浏览: 94
python的concat等多种用法详解
`concat()` 是一个用于连接多个字符串、列表或元组的函数。在 Python 中,它可用于将两个或多个字符串连接为一个字符串,或将两个或多个列表或元组连接为一个列表或元组。
以下是一些示例:
1. 连接字符串:
```python
str1 = "Hello"
str2 = "World"
result = str1 + " " + str2
print(result)
```
输出:
```
Hello World
```
2. 连接列表:
```python
list1 = [1, 2, 3]
list2 = [4, 5, 6]
result = list1 + list2
print(result)
```
输出:
```
[1, 2, 3, 4, 5, 6]
```
3. 连接元组:
```python
tuple1 = (1, 2, 3)
tuple2 = (4, 5, 6)
result = tuple1 + tuple2
print(result)
```
输出:
```
(1, 2, 3, 4, 5, 6)
```
阅读全文