如图:
str[a:b] :
1、b值取不到,只能得到b-1。
2、如果b为空,取到最后。
3、a为0 或者 a为空 或者 a为倒数最后位数,均从头取值。
4、获取切片。主要是看是否有交集,没有的话,只能得到空值。
str[:] : ‘‘helloa‘‘
str[0:5] : ‘‘hello‘‘
str[3:-2] : ‘‘l‘‘
str[3:-5] : ""
str[2:] : "lloa"
str[0:] : "helloa"
str[-6:] : "helloa"
切片的个人理解
时间: 2024-11-08 06:03:56