可能性の重複:
python .rstrip removes one additional characterrstripのバグ、または何ですか?
ここでの問題は何ですか? rstripは、コードの最後の行に必要以上に削除されているようです。
s = 'LedArray.py'
s.rstrip('y')
'LedArray.p'
s.rstrip('py')
'LedArray.'
s.rstrip('.py')
'LedArra'
s.rstrip('y.py')
'LedArra'