2023-06-26 Python - str.rstrip([chars]):文末 除去 Python3 文字列メソッド 概要 実行結果 表示イメージ 概要str.rstrip([chars])str:除去される文字列 chars:除去する文字列。省略時、空白。 文末 除去 組込み型 文字列メソッド 実行結果 print(" abcde " .rstrip()) print(" abcde ".rstrip()) print("####abcde####".rstrip('#')) print("#-#-abcde#-#-" .rstrip('#-')) 表示イメージ abcde abcde ####abcde #-#-abcde