Find an Exact Tuple Match in a List of Tuples and Return Its Index
本问题已经有最佳答案,请猛点这里访问。
我正试图弄清楚如何确定一个元组在一个元组列表中是否有完全匹配的,如果有,返回匹配元组的索引。例如,如果我有:
1 | TupList = [('ABC D','235'),('EFG H','462')] |
我想能够取任何tuple
我也不想让像
使用
1 2 3 | >>> TupList = [('ABC D','235'),('EFG H','462')] >>> TupList.index((u'EFG H',u'462')) 1 |
我想你可以这样做
1 2 3 | TupList = [('ABC D','235'),('EFG H','462')] if ('ABC D','235') in TupList: print TupList.index(i) |