一种在.txt中制作python打印居中文本的方法?

时间:2015-05-18 22:30:53

标签: python spaces

有没有办法让Python写入.txt文件并使文本显示在中心?

还有什么方法可以在文本行中创建长空格? 就像,它看起来像GCHandle,当然会有空格而不是_。

任何方式都这样做?

1 个答案:

答案 0 :(得分:1)

您可以使用

# You can change 20 by whatever you want

str = "centered"
print str.center(20, ' ')

>>                  centered

#Than to make spaces: 

print "it"+(" "*20)+"works" 

>> it                  works