Python3 string.split()方法

2019-10-16 23:11:27
split()方法使用str作為分隔符(如果未指定則使用空格分割)在字串返回所有單詞的列表。可選 num 限制拆分數量。

語法

以下是 split()方法的語法 -
str.split(str="", num=string.count(str)).

引數

  • str -- 這是分隔符,預設情況下使用空格

  • 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', '!!!']