Home /
Expert Answers /
Computer Science /
use-python-nbsp-10-10-lab-descending-selection-sort-with-output-during-execution-write-a-program-pa611
(Solved): use python 10. 10 LAB: Descending selection sort with output during execution Write a program ...
use python
10. 10 LAB: Descending selection sort with output during execution Write a program that takes an integer list as input and sorts the list into descending order using selection sort. The program stiould use nested loops and output the list after each iteration of the outer loop, thus outputting the list \( N-1 \) times (where \( N \) is the size of the list) Ex. If the input is: \( 2010 \quad 30 \quad 40 \) the output is: \( (40,10,30,20\} \) \( [40,30,10,20\} \) \( 140,30,20,10) \) Ex if the input is: 7 in \( 3 . \) the output is: Note Use print (numbers) to output the list numbers and achieve the format shown in the exarnple.
SOLUTION- I have solve the problem in python code with comments and screenshot for easy understanding :) CODE- #take input array from user inp = [int(i) for i in input