美文网首页
python 使用列表或元祖作为列表索引

python 使用列表或元祖作为列表索引

作者: 纵春水东流 | 来源:发表于2020-11-01 16:28 被阅读0次

python本身不支持列表或元祖作为列表索引

def list_indice(x,y):
    """
    python not suport list or tuple as indice,use this function to do this job
    x:a list will be indiced
    y:a list or tuple as indice,you shoul know that y list must all integer!!! or rise error
    """
    return [x[i] for i in y]

相关文章

网友评论

      本文标题:python 使用列表或元祖作为列表索引

      本文链接:https://www.haomeiwen.com/subject/tufuvktx.html