whitespace

Peter Hansen peter at engcorp.com
Fri Sep 19 20:07:32 EDT 2003


RR wrote:
> 
> Is there an easy way in python to remove whitespace from a string?

>>> '  string with whitespace   '.strip()
'string with whitespace'

-Peter




More information about the Python-list mailing list