我有一個名爲Message的字符串。使用格式說明符的python中心字符串
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!
有什麼建議嗎?
它的工作對我非常好,與Python 2.7.2在Windows上進行測試。你可能想要解釋你的問題,說它「不起作用」是不夠的。 – unwind
適用於Ubuntu Linux上的Python 3.2.3。 –
@unwind密切關注它如何「居中」,你會注意到它並沒有真正居中。 – NullUserException