有没有办法让Python写入.txt文件并使文本显示在中心?
还有什么方法可以在文本行中创建长空格?
就像,它看起来像GCHandle
,当然会有空格而不是_。
任何方式都这样做?
答案 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