This question has been flagged
1 Reply
2654 Views

Is there a way to show the rate list by name alphabetically?

Avatar
Discard
Best Answer

Dear Jorge Marin,

Try like this:

lst= ['at', 'from', 'hello', 'hi', 'there', 'this']

lst.sort(reverse=True)


Avatar
Discard