In Python, using NumPy:
Loops and Boolean Expressions: Write a function "contains_negative" that takes an array as a parameter. Your function should return True if there is at least one negative number in the array, and 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 False otherwise.