3

为什么这行得通

print "{:e}".format(array([1e-10],dtype="float64")[0])
1.000000e-10

但不是这个?

print "{:e}".format(array([1e-10],dtype="float32")[0])
---------------------------------------------------------------------------
ValueError                                Traceback (most recent call last)
<ipython-input-29-9a0800b4df65> in <module>()
----> 1 print "{:e}".format(array([1e-10],dtype="float32")[0])

ValueError: Unknown format code 'e' for object of type 'str

更新: 我尝试使用 numpy 版本 1.6.1 和 Python 2.7.3。

me@serv8:~$ python -V
Python 2.7.3
me@serv8:~$ python -c "import numpy; print numpy.__version__"
1.6.1
me@serv8:~$ python -c "from numpy import array; print \"{:e}\".format(array([1e-10],dtype=\"float32\")[0])"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
ValueError: Unknown format code 'e' for object of type 'str'
4

1 回答 1

4

Numpy 错误 #1675

这是一个在 Numpy 1.6.2 (Change log here)中修复的错误。

分析

嗯......看起来我们可以得到类型:

>>> from numpy import array
>>> a64 = array([1e-10],dtype="float64")[0]
>>> a32 = array([1e-10],dtype="float32")[0]
>>> type(a32)
<type 'numpy.float32'>
>>> type(a64)
<type 'numpy.float64'>

所以,让我们现在尝试打印:

>>> print a32
1e-10
>>> print a64
1e-10

好吧,这似乎有效。让我们尝试用指数表示法打印:

>>> print('{0:e}'.format(a64))
1.000000e-10
>>> print('{0:e}'.format(a32))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: Unknown format code 'e' for object of type 'str'

做一些谷歌搜索,我发现了对错误 #1675 的类似引用,据称该错误已在 Numpy 版本 1.6.2 中修复。(此处更改日志)

基于此,我随后安装了 1.6.2 并尝试了您在上面尝试的内容。有用。

>>> from numpy import array
>>> print "{:e}".format(array([1e-10],dtype="float64")[0])
1.000000e-10
>>> print "{:e}".format(array([1e-10],dtype="float32")[0])
1.000000e-10
于 2013-09-17T13:50:16.423 回答