theString = 'saaaay yes no yaaaass'
print theString.strip('say')
theString は配列内の文字がなくなるまで、配列内の ['s'、'a'、'y'] 文字が次々に削除されます。したがって、出力結果は次のようになります。
yes no
これは、lstrip と rstrip の原理は同じです。注: パラメータが渡されない場合、デフォルトで先頭と末尾のスペースが削除されます。
コードをコピー コードは次のとおりです:
theString = 'saaaay yes no yaaaass'
print theString.strip ('say')
print theString.strip('say ') #say の後にスペースがあります
print theString.lstrip('say')
print theString.rstrip('say' )
実行結果:
yes no
es no
yes no yaaaass
saaaay Yes no