I have a list of objects like this:
my_list = [obj1,obj2,obj3, ...]
Each object has some data like:
obj = {
'id':1,
'name':'Some name',
'value': 'Some value',
'category':'A'
}
The category options are: CATEGORY = {'A','B','C','D'}
Is it possible to sort the list somehow to display data in sequence like:
my_sordet_list = ['all in C categ', 'all in B categ', 'all in D categ','all in A categ']
So the question is: How can I explain to the program that I want it to be sorted in a strict custom sequence?