您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關Python如何去掉最后的空格的內容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。
strip()函數 去空格\n\r\t函數的用法
strip 同時去掉左右兩邊的空格
lstrip 去掉左邊的空格
rstrip 去掉右邊的空格
具體示例如下:
>>>a=" hello world!! " >>>a.lstrip() 'hello world!! ' >>>a.rstrip() ' hello world!!' >>>a.strip() 'hello world!!'
聲明:s為字符串,rm為要刪除的字符序列
s.strip(rm) 刪除s字符串中開頭、結尾處,位于 rm刪除序列的字符
s.lstrip(rm) 刪除s字符串中開頭處,位于 rm刪除序列的字符
s.rstrip(rm) 刪除s字符串中結尾處,位于 rm刪除序列的字符
注意:
當rm為空時,默認刪除空白符(包括’\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!!'
感謝各位的閱讀!關于Python如何去掉最后的空格就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。