Python split() 方法,分隔符对字符串进行分割并返回一个列表

转:https://www.cnblogs.com/wushuaishuai/p/7687294.html

Python split() 方法通过指定分隔符对字符串进行分割并返回一个列表,默认分隔符为所有空字符,包括空格、换行(\n)、制表符(\t)等。

以下实例展示了 split() 方法的使用方法:

S = "this is string example....wow!!!"
print (S.split( ))
print (S.split('i',1))
print (S.split('w'))

以上实例输出结果如下:
['this', 'is', 'string', 'example....wow!!!']
['th', 's is string example....wow!!!']
['this is string example....', 'o', '!!!']

你可能感兴趣的:(python)