[Python] 对字符串,列表的切片操作

已知有字符串s,可以用s[::-1]来反转。

 

如果 s[A:B:C] A: start indices B: end indices C: step example:

>>> a=range(100)

>>> a[2:60:6]

 [2, 8, 14, 20, 26, 32, 38, 44, 50, 56]

>>> a[30:2:-2]

 [30, 28, 26, 24, 22, 20, 18, 16, 14, 12, 10, 8, 6, 4]

你可能感兴趣的:(【python基础】)