使用格式说明符的 Python 中心字符串

Python center string using format specifier(使用格式说明符的 Python 中心字符串)
本文介绍了使用格式说明符的 Python 中心字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我有一个名为 message 的字符串.

I have a string called message.

message = "Hello, welcome!
This is some text that should be centered!"

我正在尝试将其置于默认终端窗口的中心,即宽度为 80,并使用以下语句:

And I'm trying to center it for a default Terminal window, i.e. of 80 width, with this statement:

print('{:^80}'.format(message))

哪些打印:

           Hello, welcome!
This is some text that should be centered!           

我期待这样的事情:

                                Hello, welcome!                                 
                   This is some text that should be centered!                   

有什么建议吗?

推荐答案

需要将每一行分别居中:

You need to centre each line separately:

'
'.join('{:^80}'.format(s) for s in message.split('
'))

这篇关于使用格式说明符的 Python 中心字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Why does Python#39;s IDLE crash when I type a parenthesis on Mac?(为什么我在 Mac 上键入括号时 Python 的 IDLE 会崩溃?)
Tkinter crashes Jupyter kernel?(Tkinter 崩溃 Jupyter 内核?)
IDLE crash when opening on Mac OS X(在 Mac OS X 上打开时 IDLE 崩溃)
GVIM crashes when running python(运行 python 时 GVIM 崩溃)
PySide: Segfault(?) when using QItemSelectionModel with QListView(PySide:将 QItemSelectionModel 与 QListView 一起使用时的 Segfault(?))
Why does PyQt sometimes crash on exit?(为什么 PyQt 有时会在退出时崩溃?)