当前位置 主页 > 网站技术 > 代码类 >

    Python:slice与indices的用法

    栏目:代码类 时间:2019-11-25 18:10

    slice:

      eg:

        >>>e=[0,1,2,3,4,5,6]
    
        >>>s=slice(2,3)
    
        >>>e[s]
    
        [2]
    
        slice的区间左闭右开[)
    
        >>>s
    
        slice(2,3,None)
    
        slice([strar,]stop[,step]),start缺少时就是0
    

    indices:

      eg:

        >>>print(s.indices(100))
    
        (2,3,1)
    
        >>>print(s.indices(3))
    
        (2,3,1)
    
        >>>print(s.indices(2))
    
        (2,2,1)
    
        >>>e[s]
    
        [2]
    

    这个indices相当于stop的位置,只要是大于之前的stop索引,按之前的来,否则就取小索引

    以上这篇Python:slice与indices的用法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持IIS7站长之家。