format():ValueError:整数格式说明符中不允许精度

时间:2014-01-18 04:45:38

标签: python string python-3.x

我是一个python新手。我只是熟悉格式化方法。

从我正在阅读的书中学习python

What Python does in the format method is that it substitutes each argument
value into the place of the specification. There can be more detailed specifications
such as:
decimal (.) precision of 3 for float '0.333'
>>> '{0:.3}'.format(1/3)
fill with underscores (_) with the text centered
(^) to 11 width '___hello___'
>>> '{0:_^11}'.format('hello')
keyword-based 'Swaroop wrote A Byte of Python'
>>> '{name} wrote {book}'.format(name='Swaroop', book='A Byte of Python')

如果我尝试

,请在python解释器中
print('{0:.3}'.format(1/3))

它给出错误

 File "", line 24, in 
ValueError: Precision not allowed in integer format specifier 

3 个答案:

答案 0 :(得分:8)

要打印浮点数,您必须至少有一个输入为浮点数,如下所示

print('{0:.3}'.format(1.0/3))

如果两个输入都是除法运算符的整数,则返回的结果也将是int,小数部分被截断。

<强>输出

0.333

您可以使用float函数将数据转换为float,就像这样

data = 1
print('{0:.3}'.format(float(data) / 3))

答案 1 :(得分:7)

最好添加f

In [9]: print('{0:.3f}'.format(1/3))
0.000

通过这种方式,您可以注意到1/3提供了整数,然后将其更正为1./31/3.

答案 2 :(得分:3)

值得注意的是,这个错误只会发生在python 2中。在python 3中,除法总是返回一个浮点数。

您可以使用python 2中的from __future__ import division语句复制它。

~$ python
Python 2.7.6 
>>> '{0:.3}'.format(1/3)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: Precision not allowed in integer format specifier
>>> from __future__ import division
>>> '{0:.3}'.format(1/3)
'0.333'