numpy.dtype.subdtype() function – Python
Last Updated :
18 Jun, 2020
Improve
numpy.dtype.subdtype()
function returns Tuple(item_dtype, shape) if this dtype describes a sub-array, and None otherwise.
Syntax : numpy.dtype.subdtype(type) type : [dtype] The input data-type. Return : Return Tuple(item_dtype, shape) if this dtype describes a sub-array, and None otherwise.Code #1 :
# Python program explaining
# numpy.dtype.subdtype() function
# importing numpy as geek
import numpy as geek
x = geek.dtype('8f')
gfg = x.subdtype
print (gfg)
# Python program explaining
# numpy.dtype.subdtype() function
# importing numpy as geek
import numpy as geek
x = geek.dtype('8f')
gfg = x.subdtype
print (gfg)
(dtype('float32'), (8, ))Code #2 :
# Python program explaining
# numpy.dtype.subdtype() function
# importing numpy as geek
import numpy as geek
x = geek.dtype('i2')
gfg = x.subdtype
print (gfg)
# Python program explaining
# numpy.dtype.subdtype() function
# importing numpy as geek
import numpy as geek
x = geek.dtype('i2')
gfg = x.subdtype
print (gfg)
None