Three Biggest Items Print three biggest items of a list Solution sorted(some_list, reverse=True)[:3] Or some_list.sort(reverse=True) some_list[:3]