On this page
numpy.issctype
- numpy.issctype(rep)[source]
- 
    Determines whether the given object represents a scalar data-type. - Parameters
- 
      - repany
- 
        If repis an instance of a scalar dtype, True is returned. If not, False is returned.
 
- Returns
- 
      - outbool
- 
        Boolean result of check whether repis a scalar dtype.
 
 See also Examples>>> np.issctype(np.int32) True >>> np.issctype(list) False >>> np.issctype(1.1) FalseStrings are also a scalar type: >>> np.issctype(np.dtype('str')) True
© 2005–2020 NumPy Developers
Licensed under the 3-clause BSD License.
 https://numpy.org/doc/1.19/reference/generated/numpy.issctype.html