0%

python切片

python切片

1
2
3
4
5
6
slice(0, 4, 2)
# slice(start=0, stop=4, step=2) = indices (0, 2)
list_py = list('python')
# list_py = ['p', 'y', 't', 'h', 'o', 'n']
list_py[ slice(0, 4, 2) ]
# ['p', 't']