Wednesday, October 22, 2025
HomeLanguagesnumpy.isscalar() in Python

numpy.isscalar() in Python

numpy.isscalar(num) : This is a logical function that returns true if the type of input num is scalar.

Parameters :

num : Input argument of any type and shape.

Return :

True, if input is scalar; else False

Code 1 : Working




# Python program explaining
# isscalar() function
import numpy as np
  
in_array = [1, 3, 5, 4]
print ("Input array : ", in_array)
  
isscalar_values = np.isscalar(in_array)
print ("\nIs scalar : ", isscalar_values)
  
# input
print ("\nisscalar(7) : ", np.isscalar(7))
  
# list input 
print ("\nisscalar([7]) : ", np.isscalar([7]))


Output :

Input array :  [1, 3, 5, 4]

Is scalar :  False

isscalar(7) :  True

isscalar([7]) :  False

References :
https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.isscalar.html
.

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

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS