Daftar Sortir Python dalam urutan terbalik
# there are two types of lists
# returns new list
sorted(list_name, reverse=True)
# changes list in place
list_name.sort(reverse=True)
Tejas Naik