June 2002
Beginner to intermediate
640 pages
14h 24m
English
When you parse strings, you often need to get rid of whitespace. This is what the stripping functions do. They're handy and convenient; I think you'll use them quite a bit.
Whitespace VariablesWhitespace is defined by the public variable whitespace in the string module. This code contains a tab and spaces: >>> whitespace '\ 11 ' |
The lstrip(s) (left strip) function removes leading whitespace (on the left) in the string. The rstrip(s) (right strip) function removes the trailing whitespace (on the right). The strip(s) function removes both leading and trailing whitespace. Here's an example of all three:
>>> str = " String String " >>> lstrip(str) 'String String ' >>> rstrip(str) ' String String' ...
Read now
Unlock full access