Discover the answers you need at Westonci.ca, a dynamic Q&A platform where knowledge is shared freely by a community of experts. Experience the ease of finding quick and accurate answers to your questions from professionals on our platform. Experience the ease of finding precise answers to your questions from a knowledgeable community of experts.

Enter 5 numbers, the program check each number, tells how many numbers are even and odd numbers. 1. Create func.py, create a function "CheckEvenOdd(num)", print a message to tell this is number is even or odd, returns 1 if num is even, returns 0 if odd. 2. Create Run.py, import func.py to run.py, have users to enter five numbers, call "CheckEvenOdd(num)" on each number. tells how many numbers are even and odd numbers.