strip() 関数はスペースを削除します\n\r\t関数の使用法
strip は両側のスペースを同時に削除します(推奨学習: Python ビデオ チュートリアル )
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) rm 削除シーケンスの先頭と末尾の文字を削除します。 s 文字列の
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 関連の技術記事の詳細については、次のサイトをご覧ください。
Python チュートリアル
列を読んで学習してください。以上がPythonで最後のスペースを削除する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。