文字列の先頭と末尾の空白を除去する方法 strip()メソッドを使用する方法:string = " Hello, World! " trimmed_string = string.strip() print(trimmed_string)>>More