Beginner
Even or Odd Checker
Identify whether an integer is even or odd.
📝 Prompt Inhoud
Create a function that takes an integer as input. If the integer is divisible by 2, return 'Even'. Otherwise, return 'Odd'. Include a check to ensure the input is actually a number.