Python 3 – 字符串 split() 方法
描述
split() 方法会使用str作为分隔符(如果未指定,则根据所有空格来分割),返回字符串中所有单词的列表,可选参数num限制分割的次数。
语法
split() 方法语法如下:
str.split(str="", num=string.count(str))
参数
- str − 分隔符,缺省时默认为所有的空白字符,包括空格、换行(\n)、制表符(\t)等。
-
num − 分割次数
返回值
返回一个由字符串中单词组成的列表。
示例
下面是使用 split() 方法的示例:
#!/usr/bin/python3
str = "this is string example....wow!!!"
print (str.split( ))
print (str.split('i',1))
print (str.split('w'))
结果
运行上述代码将会输出以下结果:
['this', 'is', 'string', 'example....wow!!!']
['th', 's is string example....wow!!!']
['this is string example....', 'o', '!!!']