Issue
This Content is from Stack Overflow. Question asked by zo Aoo
b = np.array([2,3,4,5])
b[b>=1]
we can get the values which are greater than 1 in b.
However
b = np.array([2,3,4,5])
b[b>=1 and b <= 2]
will raise ValueError.
How can i fix this problem?
Solution
b = np.array([2,3,4,5])
b[(b>=1) & ( b <= 2)]
This Question was asked in StackOverflow by zo Aoo and Answered by Shishu Kumar Choudhary It is licensed under the terms of CC BY-SA 2.5. - CC BY-SA 3.0. - CC BY-SA 4.0.