在元组列表中查找精确的元组匹配并返回其索引
这个问题在这里已经有了答案:
使用list.index
:
>>> TupList = [('ABC D','235'),('EFG H','462')]
>>> TupList.index((u'EFG H',u'462'))
1
我认为你可以这样做
TupList = [('ABC D','235'),('EFG H','462')]
if ('ABC D','235') in TupList:
print TupList.index(i)
链接地址: http://www.djcxy.com/p/28107.html
上一篇: Find an Exact Tuple Match in a List of Tuples and Return Its Index
下一篇: How do I use within / in operator in a Pandas DataFrame?