python sort list in reverse
#1 Changes list
list.sort(reverse=True)
#2 Returns sorted list
sorted(list, reverse=True)
how to sort a list descending python
# defning A as a list
A.sort(reverse = True)
how to sort a list of lists in python
from operator import itemgetter
A = [[10, 8], [90, 2], [45, 6]]
print("Sorted List A based on index 0: % s" % (sorted(A, key=itemgetter(0))))
B = [[50, 'Yes'], [20, 'No'], [100, 'Maybe']]
print("Sorted List B based on index 1: % s" % (sorted(B, key=itemgetter(1))))
python sort list
# example list, product name and prices
price_data = [['product 1', 320.0],
['product 2', 4387.0],
['product 3', 2491.0]]
# sort by price
print(sorted(price_data, key=lambda price: price[1]))
sort list python
>>> a = [5, 2, 3, 1, 4]
>>> a.sort()
>>> a
[1, 2, 3, 4, 5]
how to sort a list in python
l=[1,3,2,5]
l= sorted(l)
print(l)
#output=[1, 2, 3, 5]
#or reverse the order:
l=[1,3,2,5]
l= sorted(l,reverse=True)
print(l)
#output=[5, 3, 2, 1]
|