Python code help!!?

This is what the function should do: Given an arbitrary value x, return True if it is an integer, and it is positive, and it is even (all 3 must be True), or False otherwise. Do not crash if the value is not an integer. So, the input "yikes!" returns False (rather than crashing), and the input 123456 returns True.

Chris2016-02-10T13:29:24Z

Favorite Answer

http://ideone.com/QjtI2N

(you want the type() function, positive means > 0, and you return the test itself, since it will already evaluate to True or False anyway)