Question: After running all the lines in the following code, which lists would contain sorted integers in descending order? lst 1 = [ 9 9 ,

After running all the lines in the following code, which lists would contain sorted integers in descending order?
lst1=[99,1009,-1,4]
lst2= sorted(lst1)
lst3= lst1
lst3= lst3.sort(reverse=True)
lst4= sorted(lst2, reverse=True)
lst5= sorted(lst1, reverse=False)
lst5.sort(reverse=True)
Group of answer choices
lst4
lst2
lst5
lst1
lst3

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!