码迷,mamicode.com
首页 > 其他好文 > 详细

切片的个人理解

时间:2014-07-01 20:18:24      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:blog   http   2014   log   images   image   

bubuko.com,布布扣

如图:

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"

切片的个人理解,布布扣,bubuko.com

切片的个人理解

标签:blog   http   2014   log   images   image   

原文地址:http://www.cnblogs.com/daivlin/p/3816961.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!