这段代码中的整数 2 有什么作用

问题描述

在:

print("Total cost of laptops: $%2.5f" % price)

价格变量等于 9156.5,我知道代码中的小数是什么,但整数 (2) 是什么?

解决方法

这个符号

%2.5f

用于浮点数的字符串格式。 . 之后的任何内容表示将显示数字的小数点数(在本例中为五个)

print("Total cost of laptops: $%2.5f" % price)
Total cost of laptops: $9156.50000

我从未见过包含有效数字的格式,您可能看到的是旧版字符串格式的代码。

然而,我试了一下,得到了一些有趣的结果:

print("Total cost of laptops: $%11.5f" %  9156.5)
Total cost of laptops: $ 9156.50000
print("Total cost of laptops: $%20.5f" %  9156.5)
Total cost of laptops: $          9156.50000

所以看起来 . 之前的数字只是确保字符串的大小至少是那个长度。