Python split函式——學習筆記
阿新 • • 發佈:2021-02-10
技術標籤:笨辦法學Python
split函式
split()拆分字串。通過指定分隔符對字串進行切片,並返回分割後的字串列表(list)。
os.path.split():按照路徑將檔名和路徑分割開。
語法:str.split(str="",num=string.count(str))[n]
引數說明:
str:表示為分隔符,預設為空格,但是不能為空(’’)。若字串中沒有分隔符,則把整個字串作為列表的一個元素
num:表示分割次數。如果存在引數num,則僅分隔成 num+1 個子字串,並且每一個子字串可以賦給新的變數
[n]:表示選取第n個分片。
程式碼示例
ten_things= "Apples Oranges Crows Telephone Light Sugar."
stuff=ten_things.split(" ")
print(stuff)
>>>['Apples', 'Oranges', 'Crows', 'Telephone', 'Light', 'Sugar.']