Open In App

numpy.dtype.base() function – Python

Last Updated : 11 Jun, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

numpy.dtype.base() function returns dtype for the base element of the subarrays, regardless of their dimension or shape.

Syntax : numpy.dtype.base()

Return : Returns data type of the base element.

Code #1 :




# Python program explaining
# numpy.dtype.base() function
         
# importing numpy as geek 
import numpy as geek 
     
x = geek.dtype('i2')
   
gfg = x.base
   
print (gfg)


Output :

int16

 
Code #2 :




# Python program explaining
# numpy.dtype.base() function
         
# importing numpy as geek 
import numpy as geek 
     
x = geek.dtype('8f')
   
gfg = x.base
   
print (gfg)


Output :

float32

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads