Westonci.ca is the Q&A platform that connects you with experts who provide accurate and detailed answers. Join our platform to get reliable answers to your questions from a knowledgeable community of experts. Discover detailed answers to your questions from a wide network of experts on our comprehensive Q&A platform.

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.