Numpy si zéro est présent

import numpy
array = np.array([0.  , 0.05, 0.25, 0.5 , 0.75])
# is array contain no 0?
np.all(array)
>>> False
# Remove the 0, first element of the array.
array[1:]
>>> array([0.05, 0.25, 0.5 , 0.75])
# is array contain no 0?
np.all(array[1:])
>>> True
Intempestive Al Dente