Question: in python, using numpy: Loops and Boolean Expressions Write a function contains negative that takes as a parameter an array. Your function should return True
Loops and Boolean Expressions Write a function contains negative that takes as a parameter an array. Your function should return True if there is at least 1 negative number in the array, and return false otherwise. Example: With x = numpy.array([4,6,5)), contains negative(x) should return true. With x = numpy.array([2,6,8]), contains_negative(x) should return false. Now try to write contains_no_negative, which works as above, but returns true if there are NO negative numbers, and returns false otherwise
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
