Implement the function test_number that takes as input a number and a string:
(one of 'even', 'odd', 'positive', or 'negative')
The function returns True
if the number has the property indicated by the string, and False
if it doesn't.
It works for the even/odd part, so I guess it's gives faulty results for positive/negative because I had put "else: return 'False'" earlier in the function.