Write a python function that returns the input list sorted in descending order
Topic: Write a python function that returns the input list sorted in descending order
Solution
def sort_descending(list_to_be_sorted): return sorted(list_to_be_sorted, reverse=True)
List all Python Programs