how to sort in greatest to least python
myList1 = [1, 2, 3, 4, 5]
# inplace sort() greatest to least
myList1.sort(reverse=True)
# deep copy sorted() greatest to least
myList2 = sorted(myList1, reverse=True)
how to sort in greatest to least python
myList1 = [1, 2, 3, 4, 5]
# inplace sort() greatest to least
myList1.sort(reverse=True)
# deep copy sorted() greatest to least
myList2 = sorted(myList1, reverse=True)
how to store sorted list into new variable in python
>>> numbers = [6, 9, 3, 1]
>>> numbers_sorted = sorted(numbers)
>>> numbers_sorted
[1, 3, 6, 9]
>>> numbers
[6, 9, 3, 1]
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us