gpt4 book ai didi

Python 两个列表查找索引值

转载 作者:太空宇宙 更新时间:2023-11-03 13:22:53 25 4
gpt4 key购买 nike

listEx = ['cat *(select: "Brown")*', 'dog', 'turtle', 'apple']
listEx2 = ['hampter',' bird', 'monkey', 'banana', 'cat']

for j in listEx2:
for i in listEx:
if j in i:
print listEx.index(j)

我想要完成的是在 listEx 中搜索 listEx2 中的项目。如果在listEx中找到了listEx2中的项目,我想知道如何在listEx中打印从listEX2中找到的项目的索引值。谢谢!

最佳答案

只需使用枚举:

listEx = ['cat *(select: "Brown")*', 'dog', 'turtle', 'apple']
listEx2 = ['hampter',' bird', 'monkey', 'banana', 'cat']

for j in listEx2:
for pos, i in enumerate(listEx):
if j in i:
print j, "found in", i, "at position", pos, "of listEx"

这将打印

cat found in cat *(select: "Brown")* at position 0 of listEx

关于Python 两个列表查找索引值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8115015/

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