标签: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
标签:style color ar 使用 sp on art bs python
原文地址:http://www.cnblogs.com/bestSmile/p/4053291.html