我看起来像这样:
-----hello------
现在我知道我可以通过定义和打印宽度来获取要打印的符号,但是如何在其中插入文本?感谢。
答案 0 :(得分:2)
你应该尝试这样的事情:
print 'hello'.center(16,'-')
或者像这样:
print '{:-^16}'.format("hello")
这会将宽度设置为16
并使用'-'
填充字符串。
查看教程here。
答案 1 :(得分:1)
使用字符串格式
"-----%s------" %("hello")
"-----{}------".format("hello")