如何截取字符串?
Posted 每天知道一点
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何截取字符串?相关的知识,希望对你有一定的参考价值。
1、索引(可以用于获取一个子字符串)
正索引(从左往右计数,第一个字符为0开始)
word=‘hello world’
print word[0]
结果:h
负索引(从右往左计数,最后一个字符-1开始)
word=‘hello world’
print word[-1]
结果:d
2、切片(用以获取字符串中多个连接的子字符)
word=‘hello world’
print word[1:4]
结果:ello
切片索引的默认值(省略的第一个索引默认为零,省略的第二个索引默认为切片的字符串的大小。)
word=‘hello world’
Print word[:2]
结果:hel
word=‘hello world’
Print word[2:]
结果:lo world
print word[:2]+word[2:]
结果:hello world
参考资料:http://python.usyiyi.cn/translate/python_278/tutorial/introduction.html
以上是关于如何截取字符串?的主要内容,如果未能解决你的问题,请参考以下文章