📌空文字の削除2023/10/28に公開Pythontech char = 'abcdef ' new_char = char.rstrip() # 空文字の削除 print(new_char) # abcdef Discussion
Discussion