Answers for "sort by class attr in list python"

0

sort list by attribute 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)
Posted by: Guest on March-14-2021
0

python sort class by attribute

import operator
sorted_x = sorted(x, key=operator.attrgetter('score'))

# In Place:
x.sort(key=operator.attrgetter('score'))
Posted by: Guest on February-26-2021

Python Answers by Framework

Browse Popular Code Answers by Language