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

python字符串基础知识

时间:2014-10-27 01:42:01      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:style   color   ar   使用   sp   on   art   bs   python   

1.python字符串可以用"aaa",‘aaa‘,"""aaa""这三种方式来表示

2.python中的转义字符串为"r",C#里面为@逐字符

3.使用index获取字符串的某个字符:如字符串str="abcd123456" ,使用str[3]得到一个字符d

4.使用[startindex:endIndex]截取字符串,如:str[2:3],结果为:c,这里注意的一点:截取的字符串包括开始字符(c),不包括结束字符(d)。

  也可以使用负号从字符串的结尾处开始截取:如str[-2](oracle中也能这么截取哟)最后结果为5,最后还有一种截取方法为str[3:2:-1],结果为d

python字符串基础知识

标签:style   color   ar   使用   sp   on   art   bs   python   

原文地址:http://www.cnblogs.com/bestSmile/p/4053291.html

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