「python入門」strip()で文字列のスペース、改行を取り除くサンプル

2017年12月24日

例1
>>> a = ' 123’
>>> a.strip()
'123’
>>> a=’\t\tabc’
'abc’
>>> a = 'sdff\r\n’
>>> a.strip()
'sdff’

例2
>>> a = '123abc’
>>> a.strip(’21’)
'3abc’
>>> a.strip(’12’)
'3abc’

 

Python

Posted by arkgame