python 中的[: 1]和[:: 1]的具体使用
1、案例解释 \na='python' b=a[::-1] print(b) #nohtyp c=a[::-2] print(c) #nhy #从后往前数的话,最后一个位置为-1 d=a[:-1] #从位置0到位置-1之前的数 print(d) #pytho e=a[:-2] #从位置0到位置-2之前的数 print(e) #pyth 2、用法说明 b = a[i:j] 表示复制a[i]到a[j-1],以生成新的list对象 a = [0,1,2,3,4,5,6,7,8,9] b = a[1:3] # [1,2] 当i缺省时,默认为0,即 a[:3]相当于 a[0:3] 当j缺省时
用户评论