Determines whether the given object represents a scalar data-type.
rep : any
If rep is an instance of a scalar dtype, True is returned. If not, False is returned.
out : bool
Boolean result of check whether rep is a scalar dtype.
See also
issubsctype, issubdtype, obj2sctype, sctype2char
Examples
>>> np.issctype(np.int32) True >>> np.issctype(list) False >>> np.issctype(1.1) False
numpy.MachAr
numpy.issubdtype
Enter search terms or a module, class or function name.