whitespace

Peter Otten __peter__ at web.de
Fri Sep 19 19:56:53 EDT 2003


RR wrote:

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

>>> import string
>>> "a b c".translate(string.maketrans("", ""), string.whitespace)
'abc'
>>>

Peter




More information about the Python-list mailing list