Как заказать INT от лучшего до наименьшего питона

list1 = [1,2,4,3]
list1.sort(reverse=True)
print(list1)
>>[1,2,3,4]
Blue Cloud: Weird Coder