NumPy types with underscore: `int_`, `float_`, etc

后端 未结 2 1475
眼角桃花
眼角桃花 2021-02-19 04:30

What is the significance of the underscore suffixing in int_, float_, etc.?

2条回答
  •  灰色年华
    2021-02-19 05:16

    From page 21 of Guide to Numpy by TE Oliphant:

    Names for the data types that would clash with standard Python object names are followed by a trailing underscore, ’ ’. These data types are so named because they use the same underlying precision as the corresponding Python data types.

    . . .

    The array types bool_, int_, complex_, float_, object_, unicode_, and str_ are enhanced-scalars. They are very similar to the standard Python types (without the trailing underscore) and inherit from them (except for bool_ and object_). They can be used in place of the standard Python types whenever desired. Whenever a data type is required, as an argument, the standard Python types are recognized as well.

提交回复
热议问题