我正在做一个简单的查找
if xo.st in sts:
#...
如果满足条件,则需要获取sts中元素的索引(sts是列表或元组)。这需要快速(这是一个很大的清单)。最好的解决方案是什么?
最佳答案
关于什么:
if xo.st in sts:
print sts.index(xo.st)
这将返回
xo.st
中sts
的第一个索引关于python - Python:如果in语句的值为true,则获取索引,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17996508/