という文字列がありますmessage
。
message = "Hello, welcome!\nThis is some text that should be centered!"
そして、次のステートメントを使用して、デフォルトのターミナルウィンドウ(幅80)の中央に配置しようとしています。
print('{:^80}'.format(message))
どの印刷物:
Hello, welcome!
This is some text that should be centered!
私は次のようなものを期待しています:
Hello, welcome!
This is some text that should be centered!
助言がありますか?