In this python numpy program, we will test whether none of the elements of a given array is zero using Numpy.
Steps to solve the program
- Import the numpy library as np.
- Create an array using np.array().
- Test whether none of the elements of a given array is zero using np.all().
- Print the output.
import numpy as np
x = np.array([6,0,1,0])
print(np.all(x))
Output :
False