3

我有一个包含字符串“long”的变量。如何从这个字符串创建一个与 long 类型等效的 numpy dtype 对象?我有一个包含许多数字和相应类型的文件。int等都float没有问题,只是long不起作用。我不想long -> int32在我的代码中硬编码一些替换。

>>> np.dtype('long')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: data type not understood

另外:有没有办法从纯python中的字符串创建变量类型?我的意思是,我想要 的倒数int.__name__,它将类型名称转换为字符串。

4

1 回答 1

5

在这种特殊情况下,我认为您可以使用getattrnumpy模块本身获取它:

>>> import numpy as np
>>> np.dtype('long')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: data type not understood

但:

>>> getattr(np, 'long')
<type 'long'>
>>> np.dtype(getattr(np, 'long'))
dtype('int64')
>>> np.dtype(getattr(np, 'int'))
dtype('int32')
>>> np.dtype(getattr(np, 'float64'))
dtype('float64')
>>> np.dtype(getattr(np, 'float'))
dtype('float64')
于 2012-08-31T14:29:37.230 回答