Use the programming interface to complete this task. You'll be given a list of numbers.
Input: A list of numbers, separated by commas.
Output: The number of even numbers.
Read the input from a file called can-you-even.in
that's in the current working directory, and then write your output to a file called can-you-even.out
.
If you need help, try looking at the Python Tutorial in the Learn section! Perhaps you should try looking into the modulo (%) operator.
None yet!