gpt4 book ai didi

python - 从列表中获取精确匹配的索引

转载 作者:行者123 更新时间:2023-11-30 23:07:45 24 4
gpt4 key购买 nike

lst = ['a', 'b', 'c', 'aa', 'bb', 'cc']

def findexact(lst):
i=0
key = ['a','g','t']
while i < len(lst):
if any(item in lst[i] for item in key):
print i

i+=1

findexact(lst)

上面的代码,结果是:

0
3

我希望结果是:

0

我想获取“精确”匹配的索引。我需要做什么才能得到可接受的结果?

最佳答案

尝试将 if any(item in lst[i] for item in key): 更改为:

if any(item == lst[i] for item in key):

您获得了多个结果,因为“a”在“aa”中,但“a”不是“aa”的==

这会给你带来你想要的行为吗?

关于python - 从列表中获取精确匹配的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32061786/

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