這篇文章給大家分享的是有關(guān)Python如何去掉最后的空格的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考。一起跟隨小編過來看看吧。
創(chuàng)新互聯(lián)建站主要從事網(wǎng)站制作、網(wǎng)站設(shè)計(jì)、網(wǎng)頁設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)大洼,十余年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):13518219792strip()函數(shù) 去空格\n\r\t函數(shù)的用法
strip 同時(shí)去掉左右兩邊的空格
lstrip 去掉左邊的空格
rstrip 去掉右邊的空格
具體示例如下:
>>>a=" hello world??! " >>>a.lstrip() 'hello world??! ' >>>a.rstrip() ' hello world!!' >>>a.strip() 'hello world??!'
聲明:s為字符串,rm為要?jiǎng)h除的字符序列
s.strip(rm) 刪除s字符串中開頭、結(jié)尾處,位于 rm刪除序列的字符
s.lstrip(rm) 刪除s字符串中開頭處,位于 rm刪除序列的字符
s.rstrip(rm) 刪除s字符串中結(jié)尾處,位于 rm刪除序列的字符
注意:
當(dāng)rm為空時(shí),默認(rèn)刪除空白符(包括’\n’, ‘\r’, ‘\t’, ’ ')
>>> a = ' hello world??!' >>> a.strip() 'hello world??!' >>> a='\t\thello world!!' 'hello world!!' >>> a = 'hello world??!\r\n' >>> a.strip() 'hello world!!'
感謝各位的閱讀!關(guān)于Python如何去掉最后的空格就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!