Philipp Pagel wrote:
> Chris Brat <[EMAIL PROTECTED]> wrote:
> > Is there a better way to replace/remove characters (specifically ' and
> > " characters in my case, but it could be anything) in strings in a
> > list, than this example to replace 'a' with 'b':
>
> x = map(lambda foo: foo.replace('a', 'b'), x)
Or more pythonically:
x = [s.replace('a', 'b') for s in x]
George
--
http://mail.python.org/mailman/listinfo/python-list
