"chinni" <[EMAIL PROTECTED]> wrote > i am using a macpro version(10.4.11) and python version is "2.3.5"
Thats the problem, you need Python v2.4 to use the key= feature of sort. There is a way to modify sort behaviour in older versions of Python The docs say: ------------------------------ The sort() method takes an optional argument specifying a comparison function of two arguments (list items) which should return a negative, zero or positive number depending on whether the first argument is considered smaller than, equal to, or larger than the second argument. Note that this slows the sorting process down considerably;..... As an example of using the cmpfunc argument to the sort() method, consider sorting a list of sequences by the second element of that list: def mycmp(a, b): return cmp(a[1], b[1]) mylist.sort(mycmp) ----------------------------------- Check your v2.3.5 Library Reference docs for more details. http://www.python.org/doc/2.3.5/lib/typesseq-mutable.html#l2h-220 HTH, -- Alan Gauld Author of the Learn to Program web site http://www.freenetpages.co.uk/hp/alan.gauld _______________________________________________ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor