numpy.dtype.kind()函数Python
numpy.dtype.kind()
函数通过识别一般数据类型来确定字符代码。
Syntax : numpy.dtype.kind(type)
Parameters :
type : [dtype] The input data-type.
Return : Return the character code by identifying the general kind of data.
代码#1:
# Python program explaining
# numpy.dtype.kind() function
# importing numpy as geek
import numpy as geek
dtype = geek.dtype('f4')
gfg = dtype.kind
print (gfg)
输出 :
f
代码#2:
# Python program explaining
# numpy.dtype.kind() function
# importing numpy as geek
import numpy as geek
dtype = geek.dtype('i4')
gfg = dtype.kind
print (gfg)
输出 :
i