切片的个人理解

如图:

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"

posted @ 2014-06-30 17:21  daivlin  阅读(160)  评论(0编辑  收藏  举报