Open In App

numpy.dtype.kind() function – Python

Last Updated : 18 Jun, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
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 : Python3
# Python program explaining
# numpy.dtype.kind() function
          
# importing numpy as geek 
import numpy as geek 

dtype = geek.dtype('f4')

gfg = dtype.kind

print (gfg)
Output :
f
  Code #2 : Python3
# Python program explaining
# numpy.dtype.kind() function
          
# importing numpy as geek 
import numpy as geek 

dtype = geek.dtype('i4')

gfg = dtype.kind

print (gfg)
Output :
i

Next Article
Article Tags :
Practice Tags :

Similar Reads