這篇文章將為大家詳細(xì)講解有關(guān)Python中split()函數(shù)的使用方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

在Python中,split() 方法可以實現(xiàn)將一個字符串按照指定的分隔符切分成多個子串,這些子串會被保存到列表中(不包含分隔符),作為方法的返回值反饋回來。
split函數(shù)用法
split(sep=None, maxsplit=-1)
參數(shù)
sep – 分隔符,默認(rèn)為所有的空字符,包括空格、換行(\n)、制表符(\t)等。
maxsplit – 分割次數(shù)。默認(rèn)為 -1, 即分隔所有。
實例:
// 例子
String = 'Hello world! Nice to meet you'
String.split()
['Hello', 'world!', 'Nice', 'to', 'meet', 'you']
String.split(' ', 3)
['Hello', 'world!', 'Nice', 'to meet you']
String1, String2 = String.split(' ', 1)
// 也可以將字符串分割后返回給對應(yīng)的n個目標(biāo),但是要注意字符串開頭是否存在分隔符,若存在會分割出一個空字符串
String1 = 'Hello'
String2 = 'world! Nice to meet you'
String.split('!')
// 選擇其他分隔符
['Hello world', ' Nice to meet you']def split(self, *args, **kwargs): # real signature unknown """ Return a list of the words in the string, using sep as the delimiter string. sep The delimiter according which to split the string. None (the default value) means split according to any whitespace, and discard empty strings from the result. maxsplit Maximum number of splits to do. -1 (the default value) means no limit. """ pass
上圖為Pycharm文檔
def my_split(string, sep, maxsplit):
ret = []
len_sep = len(sep)
if maxsplit == -1:
maxsplit = len(string) + 2
for _ in range(maxsplit):
index = string.find(sep)
if index == -1:
ret.append(string)
return ret
else:
ret.append(string[:index])
string = string[index + len_sep:]
ret.append(string)
return ret
if __name__ == "__main__":
print(my_split("abcded", "cd", -1))
print(my_split('Hello World! Nice to meet you', ' ', 3))關(guān)于“Python中split()函數(shù)的使用方法”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
新聞標(biāo)題:Python中split()函數(shù)的使用方法-創(chuàng)新互聯(lián)
本文地址:http://chinadenli.net/article20/diiijo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供動態(tài)網(wǎng)站、網(wǎng)站制作、虛擬主機(jī)、網(wǎng)站排名、手機(jī)網(wǎng)站建設(shè)、網(wǎng)站導(dǎo)航
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)