纽比虫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(a64)
所以,我们现在试试打印:
^{pr2}$
好吧,这似乎很管用。让我们尝试用指数表示法打印:>>> print('{0:e}'.format(a64))
1.000000e-10
>>> print('{0:e}'.format(a32))
Traceback (most recent call last):
File "", line 1, in
ValueError: Unknown format code 'e' for object of type 'str'
在google上搜索时,我发现了一个类似于bug#1675的参考,它应该在Numpy版本1.6.2中修复。(Change log here)
基于此,我随后安装了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