python 如果它是python中另一个列表的子列表,则返回列表的索引

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 如果它是python中另一个列表的子列表,则返回列表的索引相关的知识,希望对你有一定的参考价值。

def find_sublist(l1,l2,depth=0):
    """ returns the index of a list in another list 
        by: Cody Kochmann """
    if not len(l1) or not len(l2): return -1
    return depth if l2[:len(l1)] == l1 else find_sublist(l1, l2[1:], depth+1)

以上是关于python 如果它是python中另一个列表的子列表,则返回列表的索引的主要内容,如果未能解决你的问题,请参考以下文章

如何将列表中的每个项目与Python中另一个列表的所有值一起使用[重复]

获取比python中另一个字符串“大”的字符串列表的元素

python数据类型-字典-016

Python3教程之字典

如何更新CoreData中另一个实体的子实体

下拉以根据单个组件中另一个下拉列表中的选定值刷新值