Question: Make a Python program. A user enters a series of integer numbers with space. And then the user enter another integer. Sort the numbers

Make a Python program. A user enters a series of integer numbers with space. And then the user enter another integer. Sort the numbers in two groups 1. equal or greater than the 2nd input integer 2. Smaller than the 2nd input integer Use only one "while" statement. See IE-2-4. (A 'for' loop is better for this problem, but this HW is for practicing 'while' loops.) Enter integer numbers with space: 33-44 33 44 55 66 743-10-33-100 Enter an integer number: 10 The numbers equal or greater than 10 [33, 33, 44, 55, 66] The numbers smaller than 10 [-44, 7, 4, 3, -1, 0, -33, -100] Enter integer numbers with space: 1234-1-2-3-440 10 Enter an integer number: 0 The numbers equal or greater than 0 [1, 2, 3, 4, 0, 10] The numbers smaller than 0 (-1,-2, -3, -44]
Step by Step Solution
There are 3 Steps involved in it
Here is a Python program that implements the described functionality python nums inputEnter integ... View full answer
Get step-by-step solutions from verified subject matter experts
