Python3 字符串 Python3 字符串


描述

split()通過(guò)指定分隔符對(duì)字符串進(jìn)行切片,如果參數(shù)num 有指定值,則僅分隔 num 個(gè)子字符串

語(yǔ)法

split()方法語(yǔ)法:

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

參數(shù)

  • str -- 分隔符,默認(rèn)為空格。
  • num -- 分割次數(shù)。

返回值

返回分割后的字符串列表。

實(shí)例

以下實(shí)例展示了split()函數(shù)的使用方法:

#!/usr/bin/python3

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

以上實(shí)例輸出結(jié)果如下:

['this', 'is', 'string', 'example....wow!!!']
['th', 's is string example....wow!!!']
['this is string example....', 'o', '!!!']

Python3 字符串 Python3 字符串