Menu

625 Lab Filter Sort List Write Program Gets List Integers Input Outputs Non Negative Integ Q43807424

6.25 LAB: Filter and sort a list

Write a program that gets a list of integers from input, andoutputs non-negative integers in ascending order (lowest tohighest).

Ex: If the input is:

10 -7 4 39 -6 12 2

the output is:

2 4 10 12 39

For coding simplicity, follow every output value by a space. Donot end with newline.

in python please

Expert Answer


Answer to 6.25 LAB: Filter and sort a list Write a program that gets a list of integers from input, and outputs non-negative integ…

OR