Question: please I really need help! ( use Python language to write the code) Even Odd Write a piece of code that will read a list
Even Odd Write a piece of code that will read a list of positive integers from the user stopping when the user enters - 1). The program will print out a list of the even integers entered by the user and a list of the odd integers entered by the user, along with a count of the number of evens and odds. Sample Output 1 Enter a positive integer (-1 to stop):-1 The user entered the following @ even numbers [] The user entered the following e odd numbers [] Sample Output 2 Enter a positive integer (-1 to stop): 2 Enter a positive integer (-1 to stop):6 Enter a positive integer (-1 to stop):4 Enter a positive integer (-1 to stop):-1 The user entered the following 3 even numbers [2, 6, 4] The user entered the following @ odd numbers [] Sample Output 3: kostenverhonen Austin Statement Teacher . 122:40 PM SONO Enter a positive integer (-1 to stop):3 Enter a positive integer (-1 to stop):6 Enter a positive integer (-1 to stop):4 Enter a positive integer (-1 to stop):7 Enter a positive integer (-1 to stop):-1 The user entered the following 2 even numbers. [6, 4) The user entered the following 2 odd numbers [3, 7] odeh
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
