What is the quickest way to check if the given pandas series contains a negative value.
For example, for the series s
below the answer is True
.
s = pd.Series([1,5,3,-1,7])
0 1
1 5
2 3
3 -1
4 7
dtype: int64
Use any
>>> s = pd.Series([1,5,3,-1,7])
>>> any(s<0)
True