使用.format()浮动NumPy结构化数组和本机字符串格式

时间:2013-06-04 22:36:13

标签: numpy string-formatting record

有谁能告诉我为什么这个NumPy记录在使用Python的新式字符串格式时遇到了麻烦?记录中的所有浮点数都隐藏在"{:f}".format(record)上。

感谢您的帮助!

In [334]: type(tmp)
Out[334]: numpy.core.records.record

In [335]: tmp
Out[335]: ('XYZZ', 2001123, -23.823917388916016)

In [336]: tmp.dtype
Out[336]: dtype([('sta', '|S6'), ('ondate', '<i8'), ('lat', '<f4')])

# Some formatting works fine
In [337]: '{0.sta:6.6s} {0.ondate:8d}'.format(tmp)
Out[337]: 'XYZZ    2001123'

# Any float has trouble
In [338]: '{0.sta:6.6s} {0.ondate:8d} {0.lat:11.6f}'.format(tmp)
---------------------------------------------------------------------------
ValueError                                Traceback (most recent call last)
/Users/jkmacc/python/pisces/<ipython-input-338-e5f6bcc4f60f> in <module>()
----> 1 '{0.sta:6.6s} {0.ondate:8d} {0.lat:11.6f}'.format(tmp)

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

1 个答案:

答案 0 :(得分:0)

NumPy用户邮件列表中的“浮动强制转换为字符串”{:f}“。格式()?”:

似乎np.int64 / 32和np.str继承了它们各自的原生Python __format__(),但是np.float32 / 64没有得到__builtin__.float.__format__()。这不直观,但我现在看到为什么这有效:

In [8]: '{:6.6s} {:8d} {:11.6f}'.format(tmp.sta, tmp.ondate, float(tmp.lat))
Out[8]: 'XYZZ    2001123  -23.820000'

谢谢!

-Jon

修改: np.float32 / int32继承自本机Python类型如果您的系统是32位。对于64位也是如此。不匹配将产生与原始帖子相同的问题。