Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

how to sort a list of objects python

# To sort the list in place...
ut.sort(key=lambda x: x.count, reverse=True)

# To return a new list, use the sorted() built-in function...
newlist = sorted(ut, key=lambda x: x.count, reverse=True)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #sort #list #objects #python
ADD COMMENT
Topic
Name
4+4 =