Python中strip和split的使用

2021-08-09 19:07:45 字數 1084 閱讀 5950

strip:引數為空時,預設刪除開頭和結尾處的空白符,包括』\n』,』\r』,』\t』

split:按字串(單個字元)全部分割

ipaddrx = "xx173.10.1.101 \t\n"

ipaddrx.strip('x') #刪除字串ipaddr中開頭和結尾處的x

'173.10.1.101 \t\n'
ipaddrx.strip('x').strip() #strip的引數為空時,預設刪除開頭和結尾處的空白符,包括'\n','\r','\t'等''
'173.10.1.101'
ipaddr = '173.10.1.101\t'

ipaddr.split('.') #按字串(單個字元)全部分割

['173', '10', '1', '101\t']
ipaddr.strip().split('.') #先刪除空白符,再按字串(單個字元)全部分割
['173', '10', '1', '101']
str = ('www.baidu.com')

print(str)

str_split = str.split('.',1) #分割1次

str_split=str.split('||') #按字串(多個字元)分割

print(str_split)

python2.0||python2.7||python3.4

['python2.0', 'python2.7', 'python3.4']

python中strip和split的使用

strip 剝去,python strip 方法 python 字串 python 字串 描述 python strip 方法用於移除字串頭尾指定的字元 預設為空格 語法 strip 方法語法 str.strip chars 引數 chars 移除字串頭尾指定的字元。返回值 返回移除字串頭尾指定的字...

python中 strip 的使用

恰好這兩天用到這個函式,看到網上的介紹都比較簡略,而且表述也不太對。自己試了試,對它有了更深刻的理解。簡介 strip 函式可以移除字串中指定的字元,像這樣 a n t1339jfsiao n t a.strip 1339jfsiao 可以看到當我們不設定strip的引數的時候,預設下該函式刪除了字...

python中strip的用法

python中strip用於移除字串頭尾指定的字元 預設為空格或換行符 或字串行。注意 該方法只能刪除開頭或是結尾的字元,不能刪除中間部分的字元。如下 a i am a student print a.strip i 去除開始的 i am a student print a.strip i tn 去...