码迷,mamicode.com
首页 > 编程语言 > 详细

python中的字符串操作

时间:2015-01-11 22:51:40      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:

    python中没有单独的字符串类型,一个字符串就是长度为1的字符串.字符串可以用(slice)几号来指定字串,片段即是用冒号隔开的两个下标:

>>>word=‘Help‘+‘A‘

>>>word

‘HelpA‘

>>>word[0:2]

    片段的缺省值:第一下标缺省为零,第二下标省略时为字符串的长度.

    下标允许为负,这时从右向左数.

>>>word[-1]

‘A‘

>>>word[-2:0]

‘pA‘

>>>word[:-2]

‘Hel‘

    超出范围的下标片段被截断,但再非片段情况下,这样是错误的.

>>>word[-100:]

‘HelpA‘

>>>word[-10] #error

    内置函数len()返回字符串的长度

与字符串相关的内建方法:

    string.lstrip("pattern")

    string.rstrip("pattern")

    string.strip("pattern")

    string.split("pattern")

python中的字符串操作

标签:

原文地址:http://www.cnblogs.com/mycats/p/4217191.html

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