Most efficient way to get indexposition of a sublist in a nested list
问题 I want to get the indexposition of a sublist in a nested list, e.g 0 for [1,2] in nested_ls = [[1,2],[3,4]]. What's the most elegant way of getting the index of the sublist, is there something similar to index() ? 回答1: Yes. It's called index . >>> [[1, 2], [3, 4]].index([1, 2]) 0 >>> [[1, 2], [3, 4]].index([3, 4]) 1 >>> [[1, 2], [3, 4]].index([1, 5]) Traceback (most recent call last): File "<stdin>", line 1, in <module> ValueError: [1, 5] is not in list 来源: https://stackoverflow.com/questions