python基础--str.split
Posted ignb
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python基础--str.split相关的知识,希望对你有一定的参考价值。
string = ‘This +is -a /string‘ process = string.split(‘-‘) process1 = string.split(‘-‘)[-1]#-1和-2可能存在某种特殊意义,小于-2或者大于1就超出list大小来 process2 = string.split(‘-‘)[0] process3 = string.split(‘-‘)[1] process4 = string.split(‘-‘)[-2]# print(process) print(process1) print(process2) print(process3) print(process4) ‘‘‘ [‘This +is ‘, ‘a /string‘] a /string This +is a /string This +is ‘‘‘
python中str.split()返回的是一个list,包含了分割后的各个部分,我这个例子里面是根据‘-‘来分割,结果是两个元素,所以直接使用就可以啦。
以上是关于python基础--str.split的主要内容,如果未能解决你的问题,请参考以下文章
python基础:splitjoinreplaceremovedelpopindex小记