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,包含了分割后的各个部分,我这个例子里面是根据‘-‘来分割,结果是两个元素,所以直接使用就可以啦。
原文地址:https://www.cnblogs.com/IGNB/p/10819301.html
时间: 2024-10-08 09:43:40