]> granicus.if.org Git - python/commitdiff
Remove import string and use string methods
authorNeal Norwitz <nnorwitz@gmail.com>
Sun, 20 Nov 2005 00:24:18 +0000 (00:24 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Sun, 20 Nov 2005 00:24:18 +0000 (00:24 +0000)
Doc/howto/sorting.tex

index a849c665e048b608fe1dff3eb0e119d27ab38939..37a7033ceab1251756568a9162eb2a78d0281d9d 100644 (file)
@@ -110,11 +110,10 @@ types, do the forward sort first, then use the \method{reverse()} method.
 Here's a case-insensitive string comparison using a \keyword{lambda} function:
 
 \begin{verbatim}
->>> import string
->>> a = string.split("This is a test string from Andrew.")
->>> a.sort(lambda x, y: cmp(string.lower(x), string.lower(y)))
+>>> a = "This is a test string from Andrew".split()
+>>> a.sort(lambda x, y: cmp(x.lower(), y.lower()))
 >>> print a
-['a', 'Andrew.', 'from', 'is', 'string', 'test', 'This']
+['a', 'Andrew', 'from', 'is', 'string', 'test', 'This']
 \end{verbatim}
 
 This goes through the overhead of converting a word to lower case