python的字符串索引和分片

1.字符串的索引

给出一个字符串,可输出任意一个字符,如果索引为负数,就是相当于从后向前数。

>>> str=”helloworld!”

>>> print str[0]

h

>>> print str[-4]

r

>>> str=”helloworld!”

>>> print str[0]

h

>>> print str[-4]

r

2.字符串的分片

分片就是从给定的字符串中分离出部分内容。

>>> str=”helloworld!”

>>> print str[0]

h

>>> print str[-4]

r

>>> print str[1:4]

ell

>>> print str[:-7]

hell

>>> print str[5:]

world!

>>> str=”helloworld!”

>>> print str[0]

h

>>> print str[-4]

r

>>> print str[1:4]

ell

>>> print str[:-7]

hell

>>> print str[5:]

world!

分片的扩展形式:

str[i,j,k]意思是从i到j-1,每隔k个元素索引一次,如果k为负数,就是按从由往左索引。

>>> print str[2:7:2]

loo

>>> print str[2:7:1]

llowo

>>> print str[2:7:2]

loo

>>> print str[2:7:1]

llowo

ord函数是将字符转化为对应的ascii码值,而chr函数是将数字转化为字符。例如:

>>> print ord(‘a’)

97

>>> print chr(97)

a

>>>

>>> print ord(‘a’)

97

>>> print chr(97)

a

>>>

python中修改字符串只能重新赋值。

每修改一次字符串就生成一个新的字符串对象,这看起来好像会造成效率下降,其实,在python内部会自动对不再使用的字符串进行垃圾回收,所

以,新的对象重用了前面已有字符串的空间。

字符串格式化:

>>> “%d %s %d you!”%(1,”goujinping”,8)

‘1 goujinping 8 you!’

>>> “%d %s %d you!”%(1,”goujinping”,8)

‘1 goujinping 8 you!’

Posted in 未分类

发表评论