标签: python alignment justify
output.write('{:>10}'.format(line[39:49]))
这仍然为我提供左对齐输出。我做错了什么?
答案 0 :(得分:2)
我随意猜测你的问题可能是什么。确实
output.write('{:>10}'.format(line[39:49].strip())) # ^^^^^^^^
产生所需的输出?