numpy.
issubsctype
Determine if the first argument is a subclass of the second argument.
Data-types.
The result.
See also
issctype
issubdtype
obj2sctype
Examples
>>> np.issubsctype('S8', str) False >>> np.issubsctype(np.array([1]), int) True >>> np.issubsctype(np.array([1]), float) False