Python split()函数

原型

str.split(str="", num=string.count(str))

|split()函数通过指定分隔符对字符串进行切片

参数

若参数str无指定值。默认为所有的空字符,包括空格、\n\t

若参数num有指定值,则分割num+1个子字符串,若无指定值,默认-1,即分隔所有

返回值

返回分割后的字符串列表

Licensed under CC BY-NC-SA 4.0
comments powered by Disqus