发布时间:2022-08-19 11:27
标准格式为
字符串[起始偏移量start: 终止偏移量end: 步长 step]
截取部分包括start 不包括end(左闭右开)
split()可以基于指定分隔符将字符串分隔成多个字符串(存储到列表中)。如果不指定分隔符,则默认使用空白字符(换行符/空格/制表符)。示例代码如下
>>>a=''to be or not to be''
>>>a.split()
['to','be','or','not','to','be']
>>>a.split('be')
['to','or not to','']
join()的作用恰好和split()的作用相反,用于将一系列子字符串连接起来。示例代码如下
>>>a=['wxx','hhh','xxx']
>>>'*'.join(a)
'wxxhhhxxx'