首页 > 其他 > 详细

String slices

时间:2014-06-23 00:51:38      阅读:444      评论:0      收藏:0      [点我收藏+]

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

String slices

原文:http://www.cnblogs.com/ryansunyu/p/3799874.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!