您可以使用字符串上的格式化函数,在Python中将浮点数格式化为固定宽度。例如,
nums = [0.555555555555, 1, 12.0542184, 5589.6654753] for x in nums: print("{:10.4f}".format(x))
这将给出输出
0.5556 1.0000 12.0542 5589.6655
使用相同的函数,您还可以格式化整数
nums = [5, 20, 500] for x in nums: print("{:d}".format(x))
这将给出输出:
5 20 500
您也可以通过指定d之前的数字来使用它来提供填充
nums = [5, 20, 500] for x in nums: print("{:4d}".format(x))
这将给出输出
5 20 500
该https://pyformat.info/网站是使用学习Python中格式化数字的细微差别都很大的资源。