Question: Even Write a function that checks whether an integer is even or not. The name of the function will be even. It will take one


Even Write a function that checks whether an integer is even or not. The name of the function will be even. It will take one argument, which you can assume to be an integer. If the argument (the integer) is even, then print Even), and return a tuple where the: first element is the integer itself, and the second element is the Boolean value True. Otherwise, print odd :(, and return a tuple where the: first element is the integer itself, and the . second element is the Boolean value False. Examples: Python 3 a even ( 2 ) # prints "Even :)", and returns the tuple . (2 b even (1) # prints "Odd :(", and returns the tuple . (1, c even (50) # prints "Even :)", and returns the tuple . (5
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
