Problem 2: Even or Odd Checker Function
Easypython
Problem Description
Write a function check_even_odd(number) that returns the string "Even" if the number is even, and "Odd" if it is odd.
Input
A single integer.
Output
The string "Even" or "Odd".
Constraints
- Input can be positive, negative, or zero.
Example Input
text7
Example Output
textOdd
Concepts Covered
Functions, return, modulus operator, conditionals.