numpy.dtype.kind() function – Python
Last Updated :
18 Jun, 2020
Improve
numpy.dtype.kind()
function determine the character code by identifying the general kind of data.
Syntax : numpy.dtype.kind(type) Parameters : type : [dtype] The input data-type. Return : Return the character code by identifying the general kind of data.Code #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)
fCode #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