Saturday, September 21, 2024
Google search engine
HomeLanguagesnumpy.issubclass_() function – Python

numpy.issubclass_() function – Python

numpy.issubclass_() function is used to determine whether a class is a subclass of a second class.

Syntax : numpy.issubclass_(arg1, arg2)

Parameters :
arg1 : [class] Input class. True is returned if arg1 is a subclass of arg2.
arg2 : [class or tuple of classes] Input class. If a tuple of classes, True is returned if arg1 is a subclass of any of the tuple elements.
Return : [bool] Boolean result. Whether arg1 is a subclass of arg2 or not.

Code #1 :




# Python program explaining
# numpy.issubclass_() function
            
# importing numpy as geek 
import numpy as geek 
        
gfg = geek.issubclass_(geek.int32, float)
      
print (gfg)


Output :

False

 
Code #2 :




# Python program explaining
# numpy.issubclass_() function
            
# importing numpy as geek 
import numpy as geek 
        
gfg = geek.issubclass_(geek.float64, float)
      
print (gfg)


Output :

True

Dominic Rubhabha-Wardslaus
Dominic Rubhabha-Wardslaushttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Recent Comments