gpt4 book ai didi

Python:要比较两个列表以进行格式匹配并制作成字典

转载 作者:行者123 更新时间:2023-11-28 16:58:13 25 4
gpt4 key购买 nike

我正在使用 python 3:我有两个列表,我想使用类似的信息将它们合并到一个字典中:

first_list = [('1234', 'abcd', 'John Doe', 'good_status'), 
('1234', 'efgh', 'John Doe', 'good_status'),
('1234', 'hijk', 'John Doe', 'bad_status'),
('5566', 'abjk', 'George Washington', 'good_status'),
('7889', 'zyxw', 'Jane Austin', bad_status')]

第二个列表可能是:

second_list = [('1234', 'John Doe', 'abcd efgh hijk'), 
('5566', 'George Washington', 'abjk'),
('7889', 'Jane Austin', 'zyxw')]

期望的字典输出:

dictionary = {'1234' : ('John Doe', 'abcd_good efgh_good hijk_baad')
'5566': ('George Washington', 'abjk_good')
'7889': ('Jane Austin', 'zyxw_bad')
}

first_list该条目 [0][2]匹配条目 [0]和条目[1]second_list .

first_list有条目 [1][3]应该放在一起并与 second_list[2] 匹配

哦...而且这两个列表并没有真正排成一行,索引 0 of 可能与索引 0 的名称不同的 second_list .

我是新手,有点不知所措,可以使用任何建议。

最佳答案

我的解决方案是只使用first_list而不引用second_list

以下代码可以在>=python 3.6环境下运行,因为我使用了f-string

完整代码如下:

first_list = [
('1234', 'abcd', 'John Doe', 'good_status'),
('1234', 'efgh', 'John Doe', 'good_status'),
('1234', 'hijk', 'John Doe', 'bad_status'),
('5566', 'abjk', 'George Washington', 'good_status'),
('7889', 'zyxw', 'Jane Austin', 'bad_status')]


dictionary = dict()

# Loop over the given list
for i in first_list:

# Extract the index
new_key = i[0]

# If the new key is not existed,
# make a new item and initialize it with empty string
# The reason for using `list` instead of `tuple`
# is that `list` object is mutable
if new_key not in dictionary.keys():
new_name = i[2]
dictionary.update({new_key: [new_name,""]})

# Parse the new status string
# and append it into the existing string
# If you are using python version under 3.6,
# try to use `format()` function
new_str = f"{i[1]}_{i[3].split('_')[0]}"
dictionary[new_key][1] += f" {new_str}"

# Transfer the lists to tuples using "dict comprehension"
dictionary = {k:tuple(v) for (k, v) in dictionary.items()}

print(dictionary)

关于Python:要比较两个列表以进行格式匹配并制作成字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56247156/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com