python-strip()的用法

Python strip() 方法用于移除字符串头尾指定的字符(默认为空格或换行符)或字符序列。

注意:该方法只能删除开头或是结尾的字符,不能删除中间部分的字符。

>>> sentence = "        tab tab 
"
>>> sentence
'	tab tab 
'
>>> print(sentence)
        tab tab

strip()处理:

>>> sentence.strip()
'tab tab'
>>> sentence
'	tab tab 
'
>>> print(sentence)
        tab tab

>>> sentence.strip('
')
'	tab tab 
'
>>> sentence.strip('
')
'	tab tab '
>>> print(sentence.strip('
'))
        tab tab
>>> print(sentence.strip())
tab tab

 ' '为回车键

原文地址:https://www.cnblogs.com/iBoundary/p/11477920.html