String slices

时间:2014-06-23 00:53:23   收藏:0   阅读:253

String slices

A segment of a string is called a slice. Selecting a slice is similar selecting a character:

bubuko.com,布布扣                       

The operator [n:m] returns the part of the string from the ‘n-eth’ character to the ‘m-eth’ character, including the first but excluding the last.

If you omit the first index (before the colon), the slice starts at the beginning of the string. If you omit the second index, the slice goes to the end of the string.

 bubuko.com,布布扣

If the first index is greater than or equal to the second the result is an empty string. An empty sting contains no characters and has length 0, but other than that, it is the same as any other string.

 

from Thinking in Python

String slices,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!