str.split(str="", num=string.count(str)).
str -- 這是分隔符,預設情況下使用空格
num -- 這是指定要作出的行數
#!/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', '!!!']