python将多个数据合并
时间: 2023-12-07 14:05:09 浏览: 91
python合并多个excel表格
如果你想将多个数据合并为一个数据对象,可以使用以下几种方法。
1. 列表合并:使用extend()函数将多个列表合并为一个列表。
```python
list1 = [1, 2, 3]
list2 = [4, 5, 6]
list3 = [7, 8, 9]
merged_list = []
merged_list.extend(list1)
merged_list.extend(list2)
merged_list.extend(list3)
print(merged_list)
```
输出结果:
```python
[1, 2, 3, 4, 5, 6, 7, 8, 9]
```
2. 字典合并:使用update()函数将多个字典合并为一个字典。
```python
dict1 = {'a': 1, 'b': 2}
dict2 = {'c': 3, 'd': 4}
dict3 = {'e': 5, 'f': 6}
merged_dict = {}
merged_dict.update(dict1)
merged_dict.update(dict2)
merged_dict.update(dict3)
print(merged_dict)
```
输出结果:
```python
{'a': 1, 'b': 2, 'c': 3, 'd': 4, 'e': 5, 'f': 6}
```
3. 元组合并:使用加号将多个元组合并为一个元组。
```python
tuple1 = (1, 2, 3)
tuple2 = (4, 5, 6)
tuple3 = (7, 8, 9)
merged_tuple = tuple1 + tuple2 + tuple3
print(merged_tuple)
```
输出结果:
```python
(1, 2, 3, 4, 5, 6, 7, 8, 9)
```
4. 集合合并:使用union()函数将多个集合合并为一个集合。
```python
set1 = {1, 2, 3}
set2 = {4, 5, 6}
set3 = {7, 8, 9}
merged_set = set1.union(set2, set3)
print(merged_set)
```
输出结果:
```python
{1, 2, 3, 4, 5, 6, 7, 8, 9}
```
阅读全文