dtype_info_name#
- astropy.utils.data_info.dtype_info_name(dtype)[source]#
 Return a human-oriented string name of the
dtypearg. This can be use by astropy methods that present type information about a data object.The output is mostly equivalent to
dtype.namewhich takes the form <type_name>[B] where <type_name> is likeintorbooland [B] is an optional number of bits which gets included only for numeric types.The output is shown below for
bytesandstrtypes, with <N> being the number of characters. This representation corresponds to the Python type that matches the dtype:Numpy S<N> U<N> Python bytes<N> str<N>
- Parameters:
 - dtype
python:str,dtype, type Input as an object that can be converted via
numpy.dtype.
- dtype
 - Returns:
 - dtype_info_name
python:str String name of
dtype
- dtype_info_name