1. 程式人生 > >Python split()函式使用中遇到的問題

Python split()函式使用中遇到的問題

Pythonsplit() 通過指定分隔符對字串進行切片,如果引數 num 有指定值,則僅分隔 num 個子字串。

split() 方法語法

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

引數

  • str -- 分隔符,預設為所有的空字元,包括空格、換行(\n)、製表符(\t)等。
  • num -- 分割次數。

返回值

返回分割後的字串列表。

例項

以下例項展示了split()函式的使用方法:

str = "abc def ghi   fdgj"
print str.split()    // 分隔符,預設為所有的空字元,包括空格、換行(\n)、製表符(\t)等
#結果:
['abc', 'def', 'ghi', 'fdgj']
print str.split(" ") // 分隔符:空格
#結果:
['abc', 'def', 'ghi', '', '', 'fdgj']