Skip to content
Related Articles
Open in App
Not now

Related Articles

numpy.ndarray.dtype() function – Python

Improve Article
Save Article
Like Article
  • Difficulty Level : Basic
  • Last Updated : 11 Jun, 2020
Improve Article
Save Article
Like Article

numpy.ndarray.dtype() function return the data-type of the array’s elements.

Syntax : numpy.ndarray.dtype()

Parameters : None

Return : [numpy dtype object] Return the data-type of the array’s elements.

Code #1 :




# Python program explaining
# numpy.ndarray.dtype() function
         
# importing numpy as geek 
import numpy as geek 
     
arr = geek.array([[0, 1], [2, 3]])
   
gfg = arr.dtype
   
print (gfg)

Output :

int64

 
Code #2 :




# Python program explaining
# numpy.ndarray.dtype() function
         
# importing numpy as geek 
import numpy as geek 
     
arr = geek.array([  0.1.2.])
   
gfg = arr.dtype
   
print (gfg)

Output :

float64
My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!