gpt4 book ai didi

python - 如何在python中创建两个组元素之间的映射?

转载 作者:行者123 更新时间:2023-12-04 09:33:47 27 4
gpt4 key购买 nike

考虑我有两组字符串元素(不必要的字符串 - 仅作为示例):
“strA1、strA2、strA3”和“strB1、strB2、strB3”。
我想根据已知法律将第一个列表中的元素与第二个列表中的元素映射为唯一的对,我可以在第一个列表中逐个元素地找到第二个列表中的元素,反之亦然。
我知道三种方法来做到这一点。
方法一:创建 map

{'strA1':'strB1', 'strA2':'strB2', 'strA3':'strB3'}
在这种情况下,我可以通过键从第二个列表中找到一个元素。但是如果我想从第一个列表中找到元素,我必须遍历所有字典键。
方法二:创建两张 map :
{'strA1':'strB1', 'strA2':'strB2', 'strA3':'strB3'}

{'strB1':'strA1', 'strB2':'strA2', 'strB3':'strA3'}
在这种情况下,我可以在两个列表中通过键找到一个元素,但我必须为此保留两个映射。
方法三: 创建有意义的索引(手动或使用枚举)并使用特殊参数从元组中的对中选择一个元素:
from enum import Enum
Index = Enum('Index', ['PAIR_A1B1', 'PAIR_A2B2', 'PAIR_A3B3'], start=0) #understandable names
#direction
A2B = 0
B2A = 1
mappingList = [('strA1','strB1'), ('strA2','strB2'), ('strA3','strB3')]
print(mappingList[Index.PAIR_A1B1.value][A2B]) # I get my mapped string here
还有其他方法吗?

最佳答案

你可以试试 bidict 图书馆也是:

from bidict import bidict

group1=["strA1", "strA2", "strA3"]
group2=["strB1", "strB2", "strB3"]

dc=dict(zip(group1,group2)) #we create the dictionary by using zip to create the tuples and then cast it to a dict

newdc= bidict(dc) #we create the bi-directional dictionary

print(newdc['strA1'])
print(newdc.inverse['strB1'])
输出:
strB1
strA1

关于python - 如何在python中创建两个组元素之间的映射?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62691719/

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