如何将输出格式化为与示例相同?

时间:2016-10-23 08:27:28

标签: python-3.x format

我不知道如何证明我的输出格式是显示的示例。第一个图像是我的输出,第二个图像是示例。

for x in range(0,count):
     print(str(x+1).rjust(1),team[x].rjust(2),str(conference[x]).rjust(3),str(points[x]).rjust(4),str(goals[x]).rjust(5))

enter image description here enter image description here

1 个答案:

答案 0 :(得分:0)

如果你把" \ t"在print语句中它与tab相同。您应该能够以" \ t"。

获得您想要的效果