标签:def 等价 切片 pre 方法 必须 默认 str1 abc
python的切片可以正切,也可以反切str1="abcdef"
>>> str1[0:4]
‘abcd‘
#str1[0:4]等价于str[0:4:1]
反向切片,必须指定步长,且为负值
>>> str1[-1:-4:-1]
‘fed‘
#等价于
>>> str1[5:2:-1]
‘fed‘
标签:def 等价 切片 pre 方法 必须 默认 str1 abc
原文地址:https://blog.51cto.com/13560219/2507517