removing duplicate spaces from a string

Rich Harkins rharkins at thinkronize.com
Mon Aug 6 16:38:26 EDT 2001


Since the default action of split is to seperate by white space (any number
or type of white space will do), the following one liner would do:

>>> s='a  b c  d'
>>> ' '.join(s.split())
'a b c d'

Rich





More information about the Python-list mailing list