您的位置:

Python两个list合并

一、Python两个list合并成字典

要将两个列表合并为字典,可以使用zip函数将两个列表转换为元组,然后使用dict函数将元组转换为字典。以下是示例代码:

list1 = [1, 2, 3, 4, 5]
list2 = ['a', 'b', 'c', 'd', 'e']

zip_obj = zip(list1, list2)
dict_obj = dict(zip_obj)

print(dict_obj)

输出结果为:

{1: 'a', 2: 'b', 3: 'c', 4: 'd', 5: 'e'}

二、Python两个list合并成dataframe

要将两个列表合并为dataframe,可以使用pandas库中的DataFrame函数。以下是示例代码:

import pandas as pd

list1 = [1, 2, 3, 4, 5]
list2 = ['a', 'b', 'c', 'd', 'e']

df = pd.DataFrame({'col1': list1, 'col2': list2})

print(df)

输出结果为:

   col1 col2
0     1    a
1     2    b
2     3    c
3     4    d
4     5    e

三、Python两个list合并成一个list

要将两个列表合并为一个列表,可以使用extend函数或加法运算符。以下是示例代码:

list1 = [1, 2, 3]
list2 = ['a', 'b', 'c']

list1.extend(list2)
print(list1)

list3 = list1 + list2
print(list3)

输出结果分别为:

[1, 2, 3, 'a', 'b', 'c']
[1, 2, 3, 'a', 'b', 'c', 'a', 'b', 'c']

四、Python两个list集合合并成一个

要将两个列表集合合并为一个,可以使用set函数去除重复元素,然后使用union函数合并集合。以下是示例代码:

set1 = {1, 2, 3}
set2 = {3, 4, 5}

set3 = set1.union(set2)

print(set3)

输出结果为:

{1, 2, 3, 4, 5}

五、Python两个字典的合并

要将两个字典合并,可以使用update函数或运算符。以下是示例代码:

dict1 = {'a': 1, 'b': 2}
dict2 = {'c': 3, 'd': 4}

dict1.update(dict2)
print(dict1)

dict3 = {**dict1, **dict2}
print(dict3)

输出结果分别为:

{'a': 1, 'b': 2, 'c': 3, 'd': 4}
{'a': 1, 'b': 2, 'c': 3, 'd': 4}

六、Python两个列表怎么合并

已经在前面介绍过了,可以使用extend函数或加法运算符将两个列表合并为一个。以下是示例代码:

list1 = [1, 2, 3]
list2 = ['a', 'b', 'c']

list1.extend(list2)
print(list1)

list3 = list1 + list2
print(list3)

输出结果分别为:

[1, 2, 3, 'a', 'b', 'c']
[1, 2, 3, 'a', 'b', 'c', 'a', 'b', 'c']

七、Python两个列表合并再排序

要将两个列表合并再排序,可以使用sorted函数。以下是示例代码:

list1 = [3, 2, 1]
list2 = [6, 5, 4]

list3 = list1 + list2
list3 = sorted(list3)

print(list3)

输出结果为:

[1, 2, 3, 4, 5, 6]

八、Python两个文件合并

要将两个文件合并,可以先读取两个文件内容,然后将内容合并后写入一个新文件中。以下是示例代码:

with open('file1.txt') as f1:
    content1 = f1.read()

with open('file2.txt') as f2:
    content2 = f2.read()

with open('file3.txt', 'w') as f3:
    f3.write(content1 + content2)

此处将file1.txt和file2.txt的内容合并后写入file3.txt文件中。

九、Python合并两个列表

已经在前面介绍过了,可以使用extend函数或加法运算符将两个列表合并为一个。以下是示例代码:

list1 = [1, 2, 3]
list2 = ['a', 'b', 'c']

list1.extend(list2)
print(list1)

list3 = list1 + list2
print(list3)

输出结果分别为:

[1, 2, 3, 'a', 'b', 'c']
[1, 2, 3, 'a', 'b', 'c', 'a', 'b', 'c']

以上就是Python两个list合并的多种方法,根据实际需求选择合适的方法即可。