Answers for "sort class aray acording to one atrribute python"

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