From b87aec3ee9bcf27ed81ab5dc8a5cb772f0e182ed Mon Sep 17 00:00:00 2001 From: rasbt Date: Sat, 2 Aug 2014 23:24:12 -0400 Subject: [PATCH] Sorting a list of tuples by the last last elements of the tuple --- howtos_as_py_files/sort_list_of_tuples_by_ele.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/howtos_as_py_files/sort_list_of_tuples_by_ele.py b/howtos_as_py_files/sort_list_of_tuples_by_ele.py index ed8470a..845774d 100644 --- a/howtos_as_py_files/sort_list_of_tuples_by_ele.py +++ b/howtos_as_py_files/sort_list_of_tuples_by_ele.py @@ -1,5 +1,5 @@ # Sebastian Raschka 09/02/2014 -# Sorting a list of tuples by the last last elements of the tuple +# Sorting a list of tuples by the last elements of the tuple # Here, we make use of the "key" parameter of the in-built "sorted()" function